问题描述
我一直在尝试使用Selenium进行Web自动化,有没有办法在没有实际安装的情况下使用chrome,firefox等浏览器,例如使用一些替代选项,或者使用它们的便携式版本.如果我可以使用便携式版本,我要告诉硒使用吗?
I have been trying to do web automation using selenium,Is there any way to use browser like chrome,firefox without actually installing then, like using some alternate options, or having portable versions of them.If I can use portable versions how do i tell selenium to use it?
推荐答案
要使用 google-chrome 和 firefox ,您必须安装功能完善的浏览器.
To use the browsers like google-chrome and firefox you have to install the full-blown browser.
作为替代方案,您可以使用 headless ( headless ) phantomjs 浏览器,如下所示:
As an alternative you can use the headless phantomjs browser as follows:
-
代码块:
Code Block:
from selenium import webdriver
driver = webdriver.PhantomJS(executable_path=r'C:\WebDrivers\phantomjs.exe', service_args=['--ignore-ssl-errors=true', '--ssl-protocol=tslv1.0'])
driver.set_window_size(1920, 1080)
driver.get("https://account.booking.com/register?op_token=EgVvYXV0aCJ7ChQ2Wjcyb0hPZDM2Tm43emszcGlyaBIJYXV0aG9yaXplGhpodHRwczovL2FkbWluLmJvb2tpbmcuY29tLyo2eyJwYWdlIjoiL3JlZGlyZWN0LXRvLWpvaW5hcHAtbHA_bGFuZz1pdCZhaWQ9MTE4NzM2MCJ9QgRjb2RlKg4QAToAQgBY5dGK8gVgAQ")
print(driver.page_source)
driver.quit()
参考文献
一些相关的讨论:
References
A couple of relevent discussions:
这篇关于在不使用任何浏览器的情况下使用Selenium的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!