硒加载页面后获取当前网址
我在Java中使用Selenium Webdriver。我想在单击“下一步”按钮从第1页移动到第2页后获取当前URL。这是我的代码:
WebDriver driver = new FirefoxDriver();
String startURL = //a starting url;
String currentURL = null;
WebDriverWait wait = new WebDriverWait(driver, 10);
foo(driver,startURL);
/* go to next page */
if(driver.findElement(By.xpath("//*[@id='someID']")).isDisplayed()){
driver.findElement(By.xpath("//*[@id='someID']")).click();
driver.manage().timeouts().implicitlyWait(30, TimeUnit.SECONDS);
wait.until(ExpectedConditions.visibilityOfElementLocated(By.xpath("//*[@id='someID']")));
currentURL = driver.getCurrentUrl();
System.out.println(currentURL);
}
我有隐式和显式等待调用,以等待页面完全加载,然后再获取当前URL。但是,它仍在打印出第 1 页的 url(预计它是第 2 页的 URL)。