我无法在Selenium和Python中使用HTMLUnit驱动程序

时间:2017-10-31 13:08:27

标签: python selenium beautifulsoup htmlunit

我试过了:

from selenium import webdriver
driver=webdriver.Remote(desired_capabilities=webdriver.DesiredCapabilities.HTMLUNIT)
driver.get('http://www.google.com')

我没有错误但是当我用例如BeautifulSoup进行研究时,程序永远不会关闭,所以他永远不会给我一个价值。

1 个答案:

答案 0 :(得分:0)

您需要运行Selenium Java服务器才能工作,因为HTMLUnit是在Java端实现的。所以下载并运行:

java -jar selenium-server-standalone-3.6.0.jar

然后更新您的代码以指向它(您需要将版本和平台设置为无):

from selenium import webdriver
cap = {'platform': None, 'browserName': 'htmlunit', 'version': None}
driver = webdriver.Remote(command_executor='http://localhost:4444/wd/hub', desired_capabilities=cap)
driver.get("https://google.com")
print(driver.page_source)