码迷,mamicode.com
首页 > 其他好文 > 详细

seleniumChrom无头浏览器

时间:2020-01-10 20:35:21      阅读:75      评论:0      收藏:0      [点我收藏+]

标签:rom   argument   find   less   界面   uri   locate   expect   ref   

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

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无头浏览器

标签:rom   argument   find   less   界面   uri   locate   expect   ref   

原文地址:https://www.cnblogs.com/Nayears/p/12177671.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!