0

私はTestNGの初心者です。これは私が eclipse で試した私のコードですが、Internet Explorer の起動時に問題が発生しています。

それが与えているエラーは org.openqa.selenium.remote.SessionNotFoundException: Internet Explorer の起動中に予期しないエラーです。保護モードの設定は、すべてのゾーンで同じではありません。[保護モードを有効にする] は、すべてのゾーンで同じ値 (有効または無効) に設定する必要があります。(警告: サーバーはスタックトレース情報を提供しませんでした)

これは完全なコードです....

package com.tcs.medmantra;
 import java.io.File;
import java.io.IOException;
import java.util.Set;
import org.openqa.selenium.Alert;
import org.openqa.selenium.By;
import org.openqa.selenium.JavascriptExecutor;
import org.openqa.selenium.Keys;
import org.openqa.selenium.NoAlertPresentException;
import org.openqa.selenium.WebDriver;
import org.openqa.selenium.WebElement;
import org.openqa.selenium.ie.InternetExplorerDriver;
import org.openqa.selenium.interactions.Actions;
import org.openqa.selenium.support.ui.ExpectedConditions;
import org.openqa.selenium.support.ui.Select;
import org.openqa.selenium.support.ui.WebDriverWait;
import org.openqa.selenium.ie.InternetExplorerDriver;
import org.testng.annotations.AfterMethod;
import org.testng.annotations.AfterTest;
import org.testng.annotations.BeforeTest;
import org.testng.annotations.DataProvider;
import org.testng.annotations.Test;

public class Registration {
    WebDriver driver;
    WebElement element;
    WebElement element2;
    WebDriverWait waiter;
    @Test(priority = 1)
    public void register_With_Cash() throws RowsExceededException, BiffException, WriteException, IOException 
      {
        driver=new InternetExplorerDriver();
        driver.get("https://172.25.155.250/loginpage.aspx");
        //((JavascriptExecutor)driver).executeScript("window.resizeTo(1366, 768);");
        waiter = new WebDriverWait (driver, 40);
        driver.findElement(By.id("txtuname")).sendKeys("122337");
        driver.findElement(By.name("txtpwd")).sendKeys("Tcs!@345");
        driver.findElement(By.id("btnsubmit")).click();
        sleep(25000);



        //print URL
        String url = driver.getCurrentUrl();
        System.out.println(url);

    }



    @BeforeTest
    public void beforeTest() {      
        File file = new File("D:\\IEDriverServer.exe");
        System.setProperty("webdriver.ie.driver", file.getAbsolutePath());

    }

    @AfterTest
    public void afterTest() {
        driver.quit();
    }



}
4

2 に答える 2