通过Selenium Webdriver脚本登出时获取500错误页面

时间:2016-03-14 15:34:31

标签: selenium selenium-webdriver

更新了代码



driver.get("https://stage.ab.org/");

System.out.println(driver.getTitle());
System.out.println(driver.getPageSource());

driver.findElement(By.id("txt-username")).sendKeys("Username");
driver.findElement(By.id("pwd-password")).sendKeys("Passw0rd");
driver.findElement(By.id("login-widget-submit")).click();

Thread.sleep(2000);

driver.findElement(By.cssSelector(".username-link-container")).click();

Thread.sleep(8000);
WebDriverWait wait = new WebDriverWait(driver, 9);  
WebElement link = wait.until(ExpectedConditions.elementToBeClickable(By.id("alinkSignOut")));
link.click();




我在Eclipse中没有任何错误。

当Webdriver脚本运行(注销用户)时,它会显示500错误页面。当我手动完成时,我能够成功。 Selenium发生了什么事?

1 个答案:

答案 0 :(得分:0)

VPN的一些问题,现在正常工作