自动运行网页填入登录账号密码获取cookie

本文介绍了如何使用自动化工具自动填写网页登录表单,输入账号和密码,并获取登录后的Cookie值。这对于进行网页爬虫或者需要模拟登录的场景非常有用。
摘要由CSDN通过智能技术生成
chrome_options = Options()
chrome_options.add_argument('--headless')
chrome_options.add_argument('--disable-gpu')
path = (r'C:/Users/Administrator/AppData/Local/Google/Chrome/Application/chromedriver.exe')
opener = webdriver.Chrome(executable_path=path)                    # 打开谷歌浏览器
opener.maximize_window()                                           # 设置全屏
# opener = webdriver.Chrome(chrome_options=chrome_options)
opener.get('http://skykeyeb.ez-wms.com/')                      # 输入易仓网址打开易仓
opener.find_element_by_xpath('//*[@id="userName"]').send_keys('1019')     # 输入登录的账号
opener.find_element_by_xpath('//*[@id="userPass"]').send_keys('xiaohui123')     # 输入登录的密码
opener.find_element_by_xpath('//*[@id="login"]').click()                   # 点击登录
time.sleep(5)                                                      # 等待 5 秒
# 自动获取cookie
cookies 
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值