import org.openqa.selenium.WebDriver;
import org.openqa.selenium.ie.InternetExplorerDriver;
public class IEdrivercode
{
public static void main(String[] args)
{
String driverpath = "path of IE Browser";
System.setProperty("webdriver.ie.driver",driverpath+"IEDriverServer.exe");
WebDriver driver=new InternetExplorerDriver();
System.out.println("Hello Google...");
driver.get("http://google.com");
driver.close();
}
}
参考图片:
我已经完成了这个链接的所有设置。
谁能帮我解决这个问题?