Internet Explorer驱动程序无法在Selenium中运行

时间:2018-02-25 16:22:28

标签: selenium selenium-webdriver webdriver internet-explorer-11

Iam尝试使用Eclipse中的Chrome和Explorer发送用户名和密码来测试简单的rediffmail登录页面。直到昨天,它工作正常,但突然相同的代码无法在资源管理器中工作(在Chrome中正常工作)。获取“配置失败:1”错误。

-Windows操作系统:7

-Internet Explorer版本:8.0

-IEDriverServer_Win32_3.0.0

我的代码如下:

System.setProperty("webdriver.ie.driver","C:\\IEDriverServer_Win32_3.0.0\\IEDriverServer.exe");
driver = new InternetExplorerDriver();

driver.get("https://mail.rediff.com/cgi-bin/login.cgi");
driver.manage().timeouts().implicitlyWait(10, TimeUnit.SECONDS);

driver.findElement(By.xpath("//*[@id='login1']")).sendKeys("sample.3400");
driver.findElement(By.xpath("//*[@id='password']")).sendKeys("edutorignitor12345");

During Execution

我试图谷歌问题,但没有解决方案。

注意:元素定位器是正确的,因为Chrome运行的代码相同。

1 个答案:

答案 0 :(得分:0)

我遇到过类似的问题。原来,驱动程序需要更新。试试吧。