首页 > 编程语言 > 详细

python自动化打开网页

时间:2019-01-25 10:43:49      阅读:201      评论:0      收藏:0      [点我收藏+]
from selenium.webdriver.firefox.options import Options as FOptions
from selenium.webdriver.chrome.options import Options as Foptions
from selenium import webdriver
from selenium.webdriver.common.keys import Keys
from selenium.webdriver.common.action_chains import ActionChains


from selenium.webdriver.firefox.firefox_profile import FirefoxProfile

#firefox设置代理
profile = FirefoxProfile()
# 激活手动代理配置(对应着在 profile(配置文件)中设置首选项)
profile.set_preference("network.proxy.type", 1)
# ip及其端口号配置为 http 协议代理
profile.set_preference("network.proxy.http", "127.0.0.1")
profile.set_preference("network.proxy.http_port", 8080)

# 所有协议共用一种 ip 及端口,如果单独配置,不必设置该项,因为其默认为 False
profile.set_preference("network.proxy.share_proxy_settings", True)

#chrome设置代理
# options = FOptions()


options = FOptions()
chrome_options = webdriver.FirefoxOptions()
chrome_options.add_argument(‘--proxy-server=http://127.0.0.1:8080‘)
chrome_options.add_argument(‘--ignore-certificate-errors‘)
chrome_options.add_argument(‘disable-infobars‘)
browser = webdriver.Firefox(executable_path="D:/geckodriver.exe",firefox_profile=profile)

browser.maximize_window()
browser.get(‘https://account.dianping.com/login?redir=http%3A%2F%2Fwww.dianping.com%2F‘)

button = browser.find_element_by_xpath(‘/html/body/div/div[2]/div[5]/span‘)
button.click()

python自动化打开网页

原文:https://www.cnblogs.com/xiejianxiong/p/10317959.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!