Selenium WebElements难度大

时间:2018-06-09 18:27:18

标签: python html selenium

我目前正在开发一个允许直接连接到某个社交网络的程序。这是代码:

browser = webdriver.Firefox(executable_path = '/usr/local/bin/geckodriver')
browser.get("https://www.instagram.com") 

username = "Richard"

browser.get('https://www.instagram.com')
input_username = browser.find_elements_by_xpath(
    "//input[@name='username']"
)

action=ActionChains(browser)
action.move_to_element(input_username)
action.click()
action.send_keys(username)
action.perform()

我遇到了问题,因为我收到了这个错误:

AttributeError: move_to requires a WebElement

我该怎么做才能解决这个问题?

1 个答案:

答案 0 :(得分:0)

input_username不是WebElement,而是您使用find_elements_by_xpath()而不是find_element_by_xpath()的列表。

尝试

input_username = browser.find_element_by_xpath("//input[@name='username']")
action.move_to_element(input_username)

input_username = browser.find_elements_by_xpath("//input[@name='username']")
action.move_to_element(input_username[0])

请注意,JavaScript会动态生成身份验证表单,因此为了能够处理输入字段,您需要等待执行JavaScript:

from selenium.webdriver.common.by import By
from selenium.webdriver.support.ui import WebDriverWait as wait
from selenium.webdriver.support import expected_conditions as EC

input_username = wait(browser, 10).until(EC.element_to_be_clickable((By.NAME, "username")))