如何使用java验证selenium中链接的重定向

时间:2018-01-19 11:48:28

标签: java selenium selenium-webdriver automated-tests url-redirection

我点击了重定向到另一个页面的特定按钮/链接,我只是想验证它是否将我重定向到正确的页面。

我正在使用Java和onClick()

2 个答案:

答案 0 :(得分:0)

  1. 您需要在变量中保存链接
  2. 重定向后,您应该保存在变量browser.getCurrentUrl()
  3. 比较这两个变量。

答案 1 :(得分:0)

expectedURL="{expected URL}";
driver.findElement(By.xpath("xpath for the button").click();
String redirectURL=driver.getCurrentUrl();
Assert.assertEquals(redirectURL,expectedURL);