1. ホーム
  2. selenium

[解決済み] WebDriverサーバーの初期起動ページです。

2022-02-12 09:11:15

質問

Firefoxでは同じコードが実行されますが、IE9では実行されず、文字列メッセージ "これはWebDriverサーバーの初期開始ページです." が表示され、他ではエラーは見つかりません。

        public void setUp() throws Exception {

    File file = new File("C:/Users/Sunil.Wali/Desktop/Softwares/IEDriverServer_Win32_2.37.0/IEDriverServer.exe");
    System.setProperty("webdriver.ie.driver", file.getAbsolutePath());

    driver = new InternetExplorerDriver();
    // driver = new FirefoxDriver();

    baseUrl = "https://tssstrpms501.corp.trelleborg.com:12001";
    driver.manage().timeouts().implicitlyWait(30, TimeUnit.SECONDS);
}
      @Test
public void testLogin() throws Exception {
    driver.get(baseUrl + "/ProcessPortal/login.jsp");
    driver.findElement(By.id("username")).clear();
    driver.findElement(By.id("username")).sendKeys("sunil.wali");
    driver.findElement(By.id("password")).clear();
    driver.findElement(By.id("password")).sendKeys("Trelleborg@123");
    driver.findElement(By.id("log_in")).click();
    driver.findElement(By.id("processPortalUserDropdown")).click();
    driver.findElement(By.id("dijit_MenuItem_56_text")).click();
}

@After
public void tearDown() throws Exception {
    driver.quit();
    String verificationErrorString = verificationErrors.toString();
    if (!"".equals(verificationErrorString)) {
        fail(verificationErrorString);
    }
}

出力:-) InternetExplorerDriver サーバーの起動 (32 ビット) 2.37.0.0 ポート31651でリスニング中

解決方法を教えてください。

各ゾーンのProtected Modeの設定値が同じであることを確認してください。参考 IEで必要な設定 .

アップデイト : 設定 ignoreZoomSettingignoreProtectedModeSettings の能力を true は、設定を変更するためのアクセス権がない場合に役立ちます。

を使用している場合 qaf は、以下のように設定することができます。

driver.name=iexplorerDriver
iexplorer.additional.capabilities={'ignoreProtectedModeSettings':true,'ignoreZoomSetting':true,'nativeEvents':false,'acceptSslCerts':true}