我目前正在开发一个允许直接连接到某个社交网络的程序。这是代码:
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
我能做些什么来解决这个问题?