繁体   English   中英

org.openqa.selenium.NoSuchWindowException:无法获取浏览器

[英]org.openqa.selenium.NoSuchWindowException: Unable to get browser

我正在登录我的应用程序(IE浏览器)。 在主页上,它具有消费者链接。 我单击它。它将打开另一个窗口。输入消费者ID(仅必填字段)并保存。 它正在保存。

现在,如果我想查看已保存的使用者。 我需要关闭窗口并将控件转移到主页。 关闭窗口后,我正在尝试使用driver.switchTo.defaultContent() 但这并没有改变控件。 返回以下错误。

例外情况

Exception in thread "main" org.openqa.selenium.NoSuchWindowException: Unable to get browser (WARNING: The server did not provide any stacktrace information)

代码

import java.io.File;
import java.io.IOException;
import java.util.Set;
import java.util.concurrent.TimeUnit;

import org.openqa.selenium.By;
import org.openqa.selenium.WebDriver;
import org.openqa.selenium.WebElement;
import org.openqa.selenium.firefox.FirefoxDriver;
import org.openqa.selenium.ie.InternetExplorerDriver;
import org.openqa.selenium.support.ui.ExpectedCondition;

public class FirstTest {

    public static void main(String[] args) throws IOException, InterruptedException {
        // TODO Auto-generated method stub
        File file = new File("IEDriverServer.exe");
        System.setProperty("webdriver.ie.driver", file.getAbsolutePath());
        WebDriver driver = new InternetExplorerDriver();        
        driver.get("http://xx.xxx.xxx.xx/mysuite/Login.aspx");
        driver.findElement(By.id("txtUser")).sendKeys("administrator");
        driver.findElement(By.id("txtPwd")).sendKeys("password");
        driver.findElement(By.id("cmdLogin")).click();      
        //Click Add customer (customer child window opens)
        driver.findElement(By.linkText("Add Customer")).click();
        driver.switchTo().window("Customer");
        //Enter Customer ID and Save
        driver.findElement(By.id("txtCode")).sendKeys("1234");
        driver.findElement(By.id("cmdPageSave")).click();
                //Close the child window
        driver.findElement(By.id("cmdPageClose")).click();
        //swith back to parent window
        driver.switchTo().defaultContent();
        Thread.sleep(3000);
        driver.findElement(By.linkText("All customers")).click();




    }

}

尝试在切换之前存储处理程序名称。

public static void main(String[] args) throws IOException, InterruptedException {
        // TODO Auto-generated method stub
        File file = new File("IEDriverServer.exe");
        System.setProperty("webdriver.ie.driver", file.getAbsolutePath());
        WebDriver driver = new InternetExplorerDriver();        
        driver.get("http://xx.xxx.xxx.xx/mysuite/Login.aspx");
        driver.findElement(By.id("txtUser")).sendKeys("administrator");
        driver.findElement(By.id("txtPwd")).sendKeys("password");
        driver.findElement(By.id("cmdLogin")).click();      
        //Click Add customer (customer child window opens)
        driver.findElement(By.linkText("Add Customer")).click();

        //Store before switch    
        String  mainHandle= driver.getWindowHandle();

        driver.switchTo().window("Customer");

        //Enter Customer ID and Save
        driver.findElement(By.id("txtCode")).sendKeys("1234");
        driver.findElement(By.id("cmdPageSave")).click();
                //Close the child window
        driver.findElement(By.id("cmdPageClose")).click();
        //swith back to parent window

        driver.switchTo().window(mainHandle);

        Thread.sleep(3000);
        driver.findElement(By.linkText("All customers")).click();

    }

暂无
暂无

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM