QA チームの誰にでもテストを手伝ってもらえるように、WebDriver 用のボイラープレート コードのタイプを設定しようとしています。私の問題は、Internet Explorer が動作していないように見えることです。エラーがスローされており、それらを修正する方法や、何らかの命名の問題があるかどうかはわかりません。ドライバー ファイルはすべて C:\ ドライブにあります。
chromedriver.exe、geckodriver.exe、IEDriverServer.exe
以下のコードのエラーは //コメントされています
import org.openqa.selenium.By;
import org.openqa.selenium.WebDriver;
import org.openqa.selenium.WebElement;
import org.openqa.selenium.chrome.ChromeDriver;
import org.openqa.selenium.firefox.FirefoxDriver;
import org.openqa.selenium.ie.IEDriverService; //The import org.openqa.selenium.ie.IEDriverService cannot be resolved
public class Loginmethod {
public static void main(String[] args) throws InterruptedException {
System.setProperty("webdriver.gecko.driver", "C:\\\\geckodriver.exe");
System.setProperty("webdriver.chrome.driver", "C:\\\\chromedriver.exe");
System.setProperty("webdriver.ie.driver", "C:\\\\IEDriverServer.exe");
WebDriver driver = new InternetExplorerDriver(); //InternetExplorerDriver cannot be resolved to a type
driver.get("http://www.google.com/");
Thread.sleep(100);
}
}
さらに、Windows 10 と Selenium を使用して Safari をテストする方法を誰かが知っていれば、それは素晴らしいことです。