如何在 Python 中使用 Selenium 解决 NoSuchElementException 错误消息?我正在尝试从下拉菜单中选择报告类型,并在运行此代码后: from selenium.webdriver.support.select import Select driver = webdriver.Chrome() driver.get("https://examplehtml.com/gims/app/reports") ##Report type driver.find_element_by_xpath('//*[@id="reportType"]').send_keys("Power Report")这会插入“Power Report”一词,但它不会像我手动选择报告类型那样选择和向前移动页面,我认为这是因为 NoSuchElementException 错误。为什么找不到元素以及如何解决此错误。我对 Selenium 还很陌生,所以任何建议都会有所帮助。
添加回答
举报
0/150
提交
取消