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");
我试图谷歌问题,但没有解决方案。
注意:元素定位器是正确的,因为Chrome运行的代码相同。
答案 0 :(得分:0)
我遇到过类似的问题。原来,驱动程序需要更新。试试吧。