我试图自动购买笔记本电脑,但当我尝试输入信用卡号时,它给出了错误,selenium.common.exceptions.NoSuchElementException: Message: no such element: Unable to locate我使用 Xpath 顺便说一句。
2 回答
catspeake
TA贡献1111条经验 获得超0个赞
所以如果你的元素是
<input type="tel" id="pp-1DUIVO-14" autocomplete="off" name="addCreditCardNumber" class="a-input-text a-form-normal">
你可以使用点击它
my_input = driver.find_element_by_css_selector('input[id="pp-1DUIVO-14"]') my_input .click()
添加回答
举报
0/150
提交
取消