1. ホーム
  2. eclipse

[解決済み] エラーです。org.openqa.selenium.chrome.ChromeDriver クラスをインスタンス化できませんでした。

2022-02-19 07:57:35

質問

テストを実行するとこのエラーが出ます。 ブラウザで実行されないのですが、どうしたらいいでしょうか。

Could not instantiate new WebDriver instance of type class 
org.openqa.selenium.chrome.ChromeDriver

コードそのものです。

package com.automation.correo;


import org.junit.Test;
import org.junit.runner.RunWith;
import org.openqa.selenium.WebDriver;
import net.serenitybdd.junit.runners.SerenityRunner;
import net.thucydides.core.annotations.Managed;
import net.thucydides.core.annotations.Steps;
import pasos.pasoscorreo;

@RunWith(SerenityRunner.class)
public class testcorreo {

@Managed(driver = "chrome", uniqueSession = true)
WebDriver driver;

@Steps
pasoscorreo buyer;

@Test 
public void Ingresar_Gmail_Valida_Correo_NoLeido() throws InterruptedException {

    buyer.Abrir_Gmail();
    buyer.Ingresar_usairio("Ingsisacontreras");
    buyer.Ingresar_password("fdfdfd;");
    buyer.Buscar_correo("Alejandro Rendon ");
    buyer.UsuarioCon_correo();
    buyer.Ultimo_correo();
    buyer.Descripcion_Correo();
    driver.close();

}

解決方法は?

serenity-cucumber4-smoketestsの初回実行時に同じ問題が発生しました。問題は、スケルトンにあるchromedriver.exeのバージョンにありました。私の会社でサポートされている新しいものに置き換えたら、テストはパスしました。しかし、ドライバのパスが正しく選択されていない場合、同じ問題が発生する可能性があります。