找传奇、传世资源到传世资源站!

python+selenium+phantomjs 模拟自动登陆discuz论坛 示...

8.5玩家评分(1人评分)
下载后可评
介绍 评论 失效链接反馈

下图为登陆成功后的结果
python+selenium+phantomjs 模拟自动登陆discuz论坛 示例源码 Python-第1张

#coding:utf-8 from selenium import webdriver from selenium.webdriver.support.ui import WebDriverWait # WebDriverWait的作用是等待某个条件的满足之后再往后运行 import time import sys driver = webdriver.PhantomJS(executable_path=r'D:\Projects\PythonProjects\PythonApplication1\PythonApplication1\phantomjs-2.1.1-windows\bin\phantomjs.exe') # 构造网页驱动 driver.get('http://www.yingxiaobu.com/forum.php') # 打开网页 driver.find_element_by_xpath('//*[@id="ls_username"]').send_keys('你的用户名') driver.find_element_by_xpath('//*[@id="ls_password"]').send_keys('你的密码') #driver.get_screenshot_as_file('验证码.jpg') # 截取当前页面的图片 #input_solution = input('请输入验证码 :') 手工打码 #driver.find_element_by_xpath('//input[@name="captcha"]').send_keys(input_solution) #time.sleep(2) driver.find_element_by_xpath('//*[@id="lsform"]/div/div/table/tbody/tr[2]/td[3]/button').click() # 表单的提交 表单的提交,即可以选择登录按钮然后使用click方法,也可以选择表单然后使用submit方法 sreach_widonw = driver.current_window_handle # 用来定位当前页面 # driver.find_element_by_xpath('//button[@class="sign-button submit"]').click() try: dr = WebDriverWait(driver,5) #dr.until(lambda the_driver: the_driver.find_element_by_xpath('//a[@class="zu-side-login-box"]').is_displayed()) if driver.find_element_by_xpath('//*[@id="um"]/p[1]/strong/a'): print('登录成功') except: print('登录失败') time.sleep(5)driver.save_screenshot('screen_shoot.jpg') #截取当前页面的图片 sys.exit(0) driver.quit() #退出驱动

评论

发表评论必须先登陆, 您可以 登陆 或者 注册新账号 !


在线咨询: 问题反馈
客服QQ:174666394

有问题请留言,看到后及时答复