-1
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();
    }
}

参照画像:

ここに画像の説明を入力

このリンクからすべての設定を行いました。

誰でもこの問題について私を助けることができますか?

4

2 に答える 2