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

selenium 无头模式

时间:2020-04-25 17:13:43      阅读:118      评论:0      收藏:0      [点我收藏+]

标签:scree   key   options   _id   get   screen   find   bsp   adl   

from selenium import webdriver
from selenium.webdriver.chrome.options import Options # => 引入Chrome的配置
import time

# 配置
ch_options = Options()
ch_options.add_argument("--headless")  # => 为Chrome配置无头模式

# 在启动浏览器时加入配置
driver = webdriver.Chrome(chrome_options=ch_options) # => 注意这里的参数

driver.get(http://baidu.com)
driver.find_element_by_id(kw).send_keys(测试)
driver.find_element_by_id(su).click()

time.sleep(2)

# 只有截图才能看到效果咯
driver.save_screenshot(./ch.png)

driver.quit()

 

selenium 无头模式

标签:scree   key   options   _id   get   screen   find   bsp   adl   

原文地址:https://www.cnblogs.com/wukai66/p/12773479.html

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