0
refrenceライブラリ(ビルドパスで設定したクラス)にこのクラスがありますが、selenium 3.7.1からクラスファイルをインポートできませんでした。Chromeleptionクラスをセレンでインポートできません
助けてください。以下は
は、私が最も安定したものですコード
package mrLogin;
import org.openqa.selenium.WebDriver;
import org.openqa.selenium.chrome.ChromeOptions; //Getting exception in this line
public class Login {
public static String driverPath = "C:/auto/Mass_Retail_Auto/bin/mrLogin/";
public static WebDriver driver;
public static ChromeOptions options;
public static void main(String[] args) {
try{
//options.AddExtension("C:/auto/Mass_Retail_Auto/bin/mrLogin/modheader
2.1.2.crx");
System.out.println("launching chrome browser");
System.setProperty("webdriver.chrome.driver",
driverPath+"chromedriver.exe");
driver = new ChromeDriver();
driver.navigate().to("http://google.com");
}
catch(Exception e){
e.printStackTrace();
}
finally {
driver.close();
System.out.println("Browser closed!!!");
}
}
}
インポートからドットを削除します。そして、次回は画像ではなくテキストとしてコードを投稿します。 – Guy
クラスのインポート中に例外が発生することを表示したい – user5067842