#英雄联盟官网登录页面
from selenium import webdriver
import time
driver = webdriver.Chrome(
executable_path='/home/ljh/桌面/driver/chromedriver'
)
driver.get('https://lol.qq.com/')
time.sleep(2)
driver.find_element_by_xpath('//p[@class="unlogin"]/a').click()
time.sleep(2)
#如果要找的节点在iframe子页面中,这时要切换到子页面中
driver.switch_to_frame('loginIframe')
driver.find_element_by_id('switcher_plogin').click()
#账号输入框 driver.find_element_by_xpath('//input[@id="u"]').send_keys('1970008493')
#密码输入框
driver.find_element_by_xpath('//input[@id="p"]').send_keys('19971127ljk')
#登录按钮,点击
driver.find_element_by_xpath('//input[@id="login_button"]').click()
cookies = {cookie['name']:cookie['value'] for cookie in driver.get_cookies()}
print(cookies)
python爬虫之selenium英雄联盟小Demo
©著作权归作者所有,转载或内容合作请联系作者
- 文/潘晓璐 我一进店门,熙熙楼的掌柜王于贵愁眉苦脸地迎上来,“玉大人,你说我怎么就摊上这事。” “怎么了?”我有些...
- 文/花漫 我一把揭开白布。 她就那样静静地躺着,像睡着了一般。 火红的嫁衣衬着肌肤如雪。 梳的纹丝不乱的头发上,一...
- 文/苍兰香墨 我猛地睁开眼,长吁一口气:“原来是场噩梦啊……” “哼!你这毒妇竟也来了?” 一声冷哼从身侧响起,我...
推荐阅读更多精彩内容
- 有道翻译的post请求的url地址: http://fanyi.youdao.com/translate_o? s...
- https://www.lagou.com/jobs/positionAjax.json?needAddtiona...
- 前置处理器:BeanShell PreProcessor前置处理器: 在请求发送之前执行BeanShell Pre...