消息:使用 selenium python 发送密钥 [search_bar.send_keys(course_name)] 到 Youtube 搜索栏时元素不可交互错误

2023-12-03

我尝试了 StackOverflow 的大部分解决方案,但对我不起作用 我正在尝试使用 selenium python 将一些课程名称发送到 youtube 搜索栏,它以前工作正常,但现在在执行此操作时出现此错误 search_bar.send_keys(course_name) 适用于其他网站,但不适用于 YT

Traceback (most recent call last):
      File "src/gevent/greenlet.py", line 766, in gevent._greenlet.Greenlet.run
      File "/home/sh4d0w/PycharmProjects/AutoMate/venv/lib/python3.7/site-packages/eel/__init__.py", line 257, in _process_message
        return_val = _exposed_functions[message['name']](*message['args'])
      File "/home/sh4d0w/PycharmProjects/AutoMate/SmallTalk.py", line 72, in SingleQueryinputValue
        RecommendCourse.getUdacityCourse(str(val))
      File "/home/sh4d0w/PycharmProjects/AutoMate/RecommendCourse.py", line 160, in getUdacityCourse
        getYoutubeCourse(course_name, driver)
      File "/home/sh4d0w/PycharmProjects/AutoMate/RecommendCourse.py", line 98, in getYoutubeCourse
        search_bar.send_keys(course_name)
      File "/home/sh4d0w/PycharmProjects/AutoMate/venv/lib/python3.7/site-packages/selenium/webdriver/remote/webelement.py", line 479, in send_keys
        'value': keys_to_typing(value)})
      File "/home/sh4d0w/PycharmProjects/AutoMate/venv/lib/python3.7/site-packages/selenium/webdriver/remote/webelement.py", line 633, in _execute
        return self._parent.execute(command, params)
      File "/home/sh4d0w/PycharmProjects/AutoMate/venv/lib/python3.7/site-packages/selenium/webdriver/remote/webdriver.py", line 321, in execute
        self.error_handler.check_response(response)
      File "/home/sh4d0w/PycharmProjects/AutoMate/venv/lib/python3.7/site-packages/selenium/webdriver/remote/errorhandler.py", line 242, in check_response
        raise exception_class(message, screen, stacktrace)
    selenium.common.exceptions.ElementNotInteractableException: Message: element not interactable
      (Session info: chrome=81.0.4044.129)

    2020-04-29T08:00:02Z <Greenlet at 0x7fd2089c67b8: _process_message({'call': 2.1877049007713376, 'name': 'SingleQueryi, <geventwebsocket.websocket.WebSocket object at 0x7)> failed with ElementNotInteractableException

代码示例

option = webdriver.ChromeOptions()
option.add_argument("window-size=1200x600");
driver = webdriver.Chrome('/usr/bin/chromedriver', options=option)
driver.get("https://www.youtube.com")
getYoutubeCourse(course_name, driver)

getYoutubeCourse() 函数体

def getYoutubeCourse(course_name, driver):
    time.sleep(2)

    search_bar = driver.find_element_by_xpath('//*[@id="search"]')
    search_bar.send_keys(course_name)

    search_bar_button = WebDriverWait(driver, 5).until(EC.element_to_be_clickable(
        (By.XPATH, '//*[@id="search-icon-legacy"]')))
    search_bar_button.click()
    ......

然后在此之后,抓取 YouTube 链接的逻辑就在那里 我还尝试了网络驱动程序等待等等,并且我的驱动程序也是最新的

请帮助我是 python 和 selenium 的新手


xpath 找到了 3 个元素://*[@id="search"]

你必须将其纠正为

//input[@id="search"]
本文内容由网友自发贡献,版权归原作者所有,本站不承担相应法律责任。如您发现有涉嫌抄袭侵权的内容,请联系:hwhale#tublm.com(使用前将#替换为@)

消息:使用 selenium python 发送密钥 [search_bar.send_keys(course_name)] 到 Youtube 搜索栏时元素不可交互错误 的相关文章

随机推荐