硒加载页面后获取当前网址

2022-09-01 12:07:02

我在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)。


答案 1

就像你说的,因为下一个按钮的xpath在每个页面上都是相同的,所以它不起作用。它的工作方式是编码的,因为它确实等待元素显示,但由于它已经显示,因此隐式等待不适用,因为它根本不需要等待。您为什么不使用URL更改的事实,因为从您的代码中,当单击下一个按钮时,它似乎会更改。我做C#,但我想在Java中它会是这样的:

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()){
    String previousURL = driver.getCurrentUrl();
    driver.findElement(By.xpath("//*[@id='someID']")).click();  
    driver.manage().timeouts().implicitlyWait(30, TimeUnit.SECONDS);

    ExpectedCondition e = new ExpectedCondition<Boolean>() {
          public Boolean apply(WebDriver d) {
            return (d.getCurrentUrl() != previousURL);
          }
        };

    wait.until(e);
    currentURL = driver.getCurrentUrl();
    System.out.println(currentURL);
} 

答案 2

第 2 页位于新选项卡/窗口中?如果是这样,请使用下面的代码:

try {

    String winHandleBefore = driver.getWindowHandle();

    for(String winHandle : driver.getWindowHandles()){
        driver.switchTo().window(winHandle);
        String act = driver.getCurrentUrl();
    }
    }catch(Exception e){
   System.out.println("fail");
    }

推荐