selenium使用chrome

2022-10-31 10:44:59 浏览数 (1)

今天在学习爬虫的时候,在selenium中调用phantomjs,没想到说要使用无头浏览器。然后纠结了半天,决定直接调用chrome的无头模式就好了。

注意,要先装好chromedriver

代码是下面这样的

代码语言:javascript复制
from selenium import webdriver
from selenium.webdriver.chrome.options import Options

chrome_options = Options()
chrome_options.add_argument('--headless')
browser = webdriver.Chrome(chrome_options=chrome_options)
browser.get('https://www.baidu.com')
print(browser.current_url)

然后后就可以在后台打开页面了。

0 人点赞