seleniumChrom无头浏览器

Posted nayears

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了seleniumChrom无头浏览器相关的知识,希望对你有一定的参考价值。

---------------------- 谷歌无头浏览器 -----------------------------

import time
from selenium import webdriver
from selenium.webdriver.chrome.options import Options
from selenium.webdriver.support import expected_conditions as EC
from selenium.webdriver.support.ui import WebDriverWait
from selenium.webdriver.common.by import By

创建一个参数对象,用来控制chrome以无界面模式打开

chrome_options = Options()
chrome_options.add_argument(‘--headless‘)
chrome_options.add_argument(‘--disable-gpu‘)

创建浏览器对象

driver = webdriver.Chrome(chrome_options=chrome_options)

driver = webdriver.Chrome()

driver.implicitly_wait(10)
wait = WebDriverWait(driver, 10, 0.5)
driver.get("https://www.baidu.com")
driver.find_element_by_id("kw").send_keys("Na_years")
driver.find_element_by_id("su").click()
wait.until(EC.presence_of_element_located((By.LINK_TEXT, ‘Na_years - 博客园‘))).click()
time.sleep(3)
driver.quit()

以上是关于seleniumChrom无头浏览器的主要内容,如果未能解决你的问题,请参考以下文章

Protractor Chrome 无头混合内容问题

无头浏览器是啥?它有啥用?

教你怎么用JavaScript检测当前浏览器是无头浏览器

无头浏览器

PHP无头浏览器? [关闭]

你是否了解谷歌的无头浏览器?