gpt4 book ai didi

java - HtmlUnitDriver 似乎没有加载页面

转载 作者:搜寻专家 更新时间:2023-10-31 20:28:50 25 4
gpt4 key购买 nike

我正在尝试让 HtmlUnitDriver 在我的开发环境中工作。作为初学者,我尝试使用最新的 selenium 服务器 jar 从下一页实现示例: http://code.google.com/p/selenium/wiki/GettingStarted

不幸的是,每当我尝试运行这个程序时,我都会遇到以下异常:

Exception in thread "main" org.openqa.selenium.NoSuchElementException: Unable to locate element with name: q
For documentation on this error, please visit: http://seleniumhq.org/exceptions/no_such_element.html
Build info: version: '2.35.0', revision: 'c916b9d', time: '2013-08-12 15:42:01'
System info: os.name: 'Windows 7', os.arch: 'x86', os.version: '6.1', java.version: '1.6.0_16'
Driver info: driver.version: HtmlUnitDriver
at org.openqa.selenium.htmlunit.HtmlUnitDriver.findElementByName(HtmlUnitDriver.java:853)
at org.openqa.selenium.By$ByName.findElement(By.java:292)
at org.openqa.selenium.htmlunit.HtmlUnitDriver$5.call(HtmlUnitDriver.java:1404)
at org.openqa.selenium.htmlunit.HtmlUnitDriver$5.call(HtmlUnitDriver.java:1)
at org.openqa.selenium.htmlunit.HtmlUnitDriver.implicitlyWaitFor(HtmlUnitDriver.java:1094)
at org.openqa.selenium.htmlunit.HtmlUnitDriver.findElement(HtmlUnitDriver.java:1401)
at org.openqa.selenium.htmlunit.HtmlUnitDriver.findElement(HtmlUnitDriver.java:419)
at Justin.Main.main(Main.java:30)

我已经尝试修改我的代码以合并此处实现的修复:

HtmlUnitDriver causes problems while getting an url

在调用 driver.get("http://www.google.com"),但返回的字符串是 about:blank

如果我使用 FirefoxDriver 运行此示例中的类似代码肯定会起作用,但为了满足要求,我需要我的脚本使用 selenium headless 运行(如果它使用特定的 BrowserVersion 运行是可以的,只要它是 headless 的)。

如有任何帮助,我们将不胜感激。

更新:

这是我现在要运行的代码。我只是想看看我可以让 HtmlUnitDriver 处理像在 Google 中输入搜索查询这样简单的事情。

package Justin;


import org.openqa.selenium.By;
import org.openqa.selenium.WebDriver;
import org.openqa.selenium.WebElement;
import org.openqa.selenium.htmlunit.HtmlUnitDriver;


public class Main {
public static void main(final String[] args) {
// Create a new instance of the html unit driver
// Notice that the remainder of the code relies on the interface,
// not the implementation.
final WebDriver driver = new HtmlUnitDriver();
((HtmlUnitDriver)driver).setJavascriptEnabled(true);

// And now use this to visit Google
driver.get("http://www.google.com");

try {
Thread.sleep(30000);
} catch (final InterruptedException e) {
// TODO Auto-generated catch block
e.printStackTrace();
}

// Find the text input element by its name
final WebElement element = driver.findElement(By.name("q"));

// Enter something to search for
element.sendKeys("Cheese!");

// Now submit the form. WebDriver will find the form for us from the element
element.submit();

// Check the title of the page
System.out.println("Page title is: " + driver.getTitle());

}
}

更新 2:

这个问题很奇怪。我已经在家里的电脑上尝试了相同的代码,它在 BrowserVersion 设置为 Firefox 或 Internet Explorer 的情况下工作得很好。这个问题肯定是由我工作场所的计算机配置引起的,尽管我仍然不知道为什么会这样。

最佳答案

在给出的示例代码中,它假定存在具有名称=q 的搜索字段的较旧的 Google 页面。

页面不再以这种方式标记 - 尝试将 driver.findElement(By.name("q")) 更改为 driver.findElement(By.cssSelector("input[id =gbqfq]") 并查看是否可以解决您的问题 - 至少它应该能够在您加载页面后输入到搜索栏。

如果您在尝试获取页面后立即调用了 driver.getCurrentUrl(),它可能没有完全加载,而是返回了 about:blank。

如果这不起作用,我们可以继续进行故障排除 - 使用 headless 浏览器更难看到实际发生了什么,因此您可能需要暂时切换到 FirefoxDriver 以准确查看正在发生的事情。

关于java - HtmlUnitDriver 似乎没有加载页面,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/19139151/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com