我点击了重定向到另一个页面的特定按钮/链接,我只是想验证它是否将我重定向到正确的页面。
我正在使用Java和onClick()
。
答案 0 :(得分:0)
browser.getCurrentUrl()
答案 1 :(得分:0)
expectedURL="{expected URL}";
driver.findElement(By.xpath("xpath for the button").click();
String redirectURL=driver.getCurrentUrl();
Assert.assertEquals(redirectURL,expectedURL);