如何在不使用selenium webdriver滚动的情况下从网页获取数据

时间:2018-04-24 04:33:57

标签: selenium

如何在不使用滚动或向上和向下翻页的情况下从网页获取所有数据。

enter image description here

    int n = 10;
        for (int i = 0; i < n; i++) {
            wait.until(ExpectedConditions.visibilityOfElementLocated(By.xpath("//*[@type=\"text\"]")));
            List<WebElement> FV = driver.findElements(By.xpath("//*[@type=\"text\"]"));
            WebElement aa = FV.get(i);
            String cc = aa.getAttribute("value");
            System.out.println(cc);

运行此代码后,它显示为空白。

0 个答案:

没有答案