51Testing软件测试论坛
标题:
Selenium与Webdriver进行自动化网页QQ登录时执行第一步后不动了
[打印本页]
作者:
测试积点老人
时间:
2022-5-27 11:31
标题:
Selenium与Webdriver进行自动化网页QQ登录时执行第一步后不动了
from selenium import webdriver
import time
driver = webdriver.Chrome()
driver.maximize_window()
driver.get("https://im.qq.com/index")
driver.find_element_by_xpath("//a[contains(text(),'登录')]").click()
time.sleep(2)
driver.find_element_by_xpath("//input[@id='switcher_plogin']").click()
driver.find_element_by_xpath("//input[@id='u']").clear()
driver.find_element_by_xpath("//input[@id='u']").send_keys("123456789")
driver.find_element_by_xpath("//input[@id='p']").clear()
driver.find_element_by_xpath("//input[@id='p']").send_keys("abcdefg!")
driver.find_element_by_xpath("//input[@value='授权登录']").click()
driver.quit()
复制代码
[attach]138222[/attach]
另外,程序代码中 find_element_by_xpath出现中划线,软件提示弃用,要更改为find_element(By.XPATH,value= xpath)格式,本人尝试修改后,提示出错,请问针对我这串代码如何修改?
作者:
kallinr
时间:
2022-5-30 09:50
看不到报错
作者:
qqq911
时间:
2022-5-30 10:50
这种是要用手机扫二维码的
作者:
jingzizx
时间:
2022-5-30 13:27
换新方法就行了
作者:
钛合金巨棒
时间:
2022-5-31 15:52
要么你学下新的写法,要么手动降低selenium的版本,你上面的写法用3.141版本就不会报你说的问题了
欢迎光临 51Testing软件测试论坛 (http://bbs.51testing.com/)
Powered by Discuz! X3.2