测试积点老人 发表于 2018-5-9 14:37:55

Day4-1测试积点任务

问题:
selenium 定位不到元素
<font face="微软雅黑" size="3">
from selenium import webdriver
from selenium.webdriver.support.ui import WebDriverWait
import time

path = r'C:\Users\hzhb\AppData\Roaming\Mozilla\Firefox\Profiles\0sxz7ow0.default'
profile = webdriver.FirefoxProfile(path)
b = webdriver.Firefox(profile)
b.get('http://pan.baidu.com')
time.sleep(5)

user_pwd_login = WebDriverWait(b, 5, 0.5).until(lambda x: x.find_element_by_id('TANGRAM__PSP_4__footerULoginBtn'))
user_pwd_login.click()

username = WebDriverWait(b, 5, 0.5).until(lambda x: x.find_element_by_name('pass-text-input pass-text-input-userName'))
username.send_keys('18716008303')

pwd = WebDriverWait(b, 5, 0.5).until(lambda x: x.find_element_by_name('pass-text-input pass-text-input-password'))
username.send_keys('1739947940zz')

b.find_element_by_id('TANGRAM__PSP_4__submit').click()

time.sleep(5)

cookie = b.get_cookies()
print cookie

b.quit()</font>


jingzizx 发表于 2018-5-10 09:39:09

多种定位方式结合
报错信息呢?

abcsell 发表于 2018-5-10 10:07:21

查看一下报错信息,查找问题

梦想家 发表于 2018-5-10 10:16:19

定位是否不对换一种定位方式试一下

libingyu135 发表于 2018-5-10 10:24:12

你现在用的什么方法定位呢?

qqq911 发表于 2018-5-10 10:28:21

用xpath定位
页: [1]
查看完整版本: Day4-1测试积点任务