Selenium cannot find element by name on instagram autorisation page(在Instagram自动化页上找不到元素的名称)
本文介绍了在Instagram自动化页上找不到元素的名称的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
尝试使用Selify处理Instagram自动化页上的用户名输入字段时,出现意外结果。
编码:
from selenium import webdriver
from selenium.webdriver.common.by import By
patch = r'{patch to driver}'
driver = webdriver.Chrome(patch)
driver.get('https://api.instagram.com/oauth/authorize?client_id=965975207687609&redirect_uri=https://6b4c-46-39-51-57.ngrok.io/autos/index.php/&scope=user_profile,user_media&response_type=code')
elem = driver.find_element(By.NAME, 'username')
被重定向到的页面驱动程序是:https://www.instagram.com/accounts/login/?force_authentication=1&enable_fb_login=1&next=/oauth/authorize%3Fclient_id%3D965975207687609%26redirect_uri%3Dhttps%3A//6b4c-46-39-51-57.ngrok.io/autos/index.php/%26scope%3Duser_profile%2Cuser_media%26response_type%3Dcode
该页面上的元素名为用户名,但我收到了一堆错误消息:
C:UsersdigitAppDataRoamingMicrosoftWindowsStart MenuProgramsPython 3.10gitdirapiinsta_api.py:54: DeprecationWarning: executable_path has been deprecated, please pass in a Service object driver = webdriver.Chrome(patch)
DevTools listening on ws://127.0.0.1:58299/devtools/browser/8fd4d931-7cc4-4070-b3f6-3a6a0df9769e Traceback (most recent call last): File "C:UsersdigitAppDataRoamingMicrosoftWindowsStart MenuProgramsPython 3.10gitdirapiinsta_api.py", line 64, in <module>
elem = driver.find_element(By.NAME, 'username') File "C:UsersdigitAppDataLocalProgramsPythonPython310libsite-packagesseleniumwebdriver
emotewebdriver.py", line 1244, in find_element
return self.execute(Command.FIND_ELEMENT, { File "C:UsersdigitAppDataLocalProgramsPythonPython310libsite-packagesseleniumwebdriver
emotewebdriver.py", line 424, in execute
self.error_handler.check_response(response) File "C:UsersdigitAppDataLocalProgramsPythonPython310libsite-packagesseleniumwebdriver
emoteerrorhandler.py", line 247, in check_response
raise exception_class(message, screen, stacktrace) selenium.common.exceptions.NoSuchElementException: Message: no such element: Unable to locate element: {"method":"css selector","selector":"[name="username"]"} (Session info: chrome=97.0.4692.71)
推荐答案
Instagram Login Page上的用户名字段是一个ReactJS元素。因此,要发送字符序列,您必须为element_to_be_clickable()归纳WebDriverWait,并且可以使用以下Locator Strategies之一:
使用css_selector:
driver.get('https://api.instagram.com/oauth/authorize?client_id=965975207687609&redirect_uri=https://6b4c-46-39-51-57.ngrok.io/autos/index.php/&scope=user_profile,user_media&response_type=code') WebDriverWait(driver, 20).until(EC.element_to_be_clickable((By.CSS_SELECTOR, "input[name='username']"))).send_keys("Ignat")
使用XPath:
driver.get('https://api.instagram.com/oauth/authorize?client_id=965975207687609&redirect_uri=https://6b4c-46-39-51-57.ngrok.io/autos/index.php/&scope=user_profile,user_media&response_type=code') WebDriverWait(driver, 20).until(EC.element_to_be_clickable((By.XPATH, "//input[@name='username']"))).send_keys("Ignat")
注意:您必须添加以下导入:
from selenium.webdriver.support.ui import WebDriverWait
from selenium.webdriver.common.by import By
from selenium.webdriver.support import expected_conditions as EC
这篇关于在Instagram自动化页上找不到元素的名称的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
沃梦达教程
本文标题为:在Instagram自动化页上找不到元素的名称
猜你喜欢
- 检查具有纬度和经度的地理点是否在 shapefile 中 2022-01-01
- 我如何透明地重定向一个Python导入? 2022-01-01
- 使用公司代理使Python3.x Slack(松弛客户端) 2022-01-01
- 计算测试数量的Python单元测试 2022-01-01
- CTR 中的 AES 如何用于 Python 和 PyCrypto? 2022-01-01
- ";find_element_by_name(';name';)";和&QOOT;FIND_ELEMENT(BY NAME,';NAME';)";之间有什么区别? 2022-01-01
- YouTube API v3 返回截断的观看记录 2022-01-01
- 使用 Cython 将 Python 链接到共享库 2022-01-01
- 我如何卸载 PyTorch? 2022-01-01
- 如何使用PYSPARK从Spark获得批次行 2022-01-01