selenium.common.exceptions.ElementNotVisibleException: Message: element not interactable using Selenium(selenium.common.exceptions.ElementNotVisibleException:消息:元素无法使用 Selenium 进行交互)
问题描述
我正在寻找一个有趣的程序,但我对 selenium 有一些问题,我需要一些帮助...这是程序(我删除了webdriver的目录,因为文件夹的名称包含其他人的名字)
I am searching to do a program for fun but i have some problems with selenium and i need some help... This is the programm (i deleted the directory of webdriver because the folder's name contain the name of an other person)
from selenium import webdriver
import webbrowser
import time
def Pass_send_():
driver=webdriver.Chrome()
driver.get('chrome://flags/#password_export-enable')
ricerca=driver.find_element_by_id("search")
ricerca.send_keys('password export')
scorritore=driver.find_element_by_class_name('experiment-select')
scorritore.click()
Pass_send_()
所以它的目的很简单,它应该打开一个窗口,输入一个文本并单击一个按钮.一切正常,但点击没有,这是错误:
And so the purpose it's easy, it should open a windows, type a text and click a button. everything works but the click doesn't and this is the error:
Traceback (most recent call last):
File "C:Python34internet22.py", line 18, in <module>
Pass_send_()
File "C:Python34internet22.py", line 14, in Pass_send_
scorritore.click()
File "C:Python34libsite-
packagesseleniumwebdriver
emotewebelement.py", line 80, in click
self._execute(Command.CLICK_ELEMENT)
File "C:Python34libsite-
packagesseleniumwebdriver
emotewebelement.py", line 633, in _execute
return self._parent.execute(command, params)
File "C:Python34libsite-
packagesseleniumwebdriver
emotewebdriver.py", line 321, in execute
self.error_handler.check_response(response)
File "C:Python34libsite-
packagesseleniumwebdriver
emoteerrorhandler.py", line 242, in
check_response
raise exception_class(message, screen, stacktrace)
selenium.common.exceptions.ElementNotVisibleException: Message: element not interactable
所以我不是专家,但它说:元素不可交互?这是什么意思,我该如何解决?非常感谢您的回复...
So i am not an expert but it says: element not intercatable? what does it mean and how can i fix it? i would really appreciate a reply...
推荐答案
发送一个字符序列到网页中的搜索框 chrome://flags/#password_export-enable
需要诱导WebDriverWait,可以使用如下解决方案:
To send a character sequence to the search box within the webpage chrome://flags/#password_export-enable
you need to induce WebDriverWait and you can use the following solution:
代码块:
Code Block:
from selenium import webdriver
from selenium.webdriver.chrome.options import Options
from selenium.webdriver.support.ui import WebDriverWait
from selenium.webdriver.common.by import By
from selenium.webdriver.support import expected_conditions as EC
options = Options()
options.add_argument('start-maximized')
options.add_argument('disable-infobars')
options.add_argument('--disable-extensions')
driver = webdriver.Chrome(chrome_options=options, executable_path=r'C:WebDriverschromedriver.exe')
driver.get('chrome://flags/#password_export-enable')
WebDriverWait(driver, 20).until(EC.element_to_be_clickable((By.CSS_SELECTOR, "input#search"))).send_keys("password export")
浏览器快照:
Browser Snapshot:
这篇关于selenium.common.exceptions.ElementNotVisibleException:消息:元素无法使用 Selenium 进行交互的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:selenium.common.exceptions.ElementNotVisibleException:消息:元素无法使用 Selenium 进行交互
基础教程推荐
- 使用PyInstaller后在Windows中打开可执行文件时出错 2022-01-01
- Python kivy 入口点 inflateRest2 无法定位 libpng16-16.dll 2022-01-01
- 筛选NumPy数组 2022-01-01
- 用于分类数据的跳跃记号标签 2022-01-01
- 如何在海运重新绘制中自定义标题和y标签 2022-01-01
- Dask.array.套用_沿_轴:由于额外的元素([1]),使用dask.array的每一行作为另一个函数的输入失败 2022-01-01
- 何时使用 os.name、sys.platform 或 platform.system? 2022-01-01
- 在 Python 中,如果我在一个“with"中返回.块,文件还会关闭吗? 2022-01-01
- 线程时出现 msgbox 错误,GUI 块 2022-01-01
- 如何让 python 脚本监听来自另一个脚本的输入 2022-01-01