如何在不使用滚动或向上和向下翻页的情况下从网页获取所有数据。
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);
运行此代码后,它显示为空白。