i need to click second row submit button我正在尝试使用网站上存在的标签的XPath,并使用chrome / firefox收集了XPath,但似乎每次遇到以下异常时,我都会发现:
我保留了睡眠时间,并且可以看到网站加载时间比睡眠时间还早但仍然会出现错误。
said_input = driver.find_element_by_xpath('//*[@id="ctl00_ctl00_ContentPlaceHolder1_ContentPlaceHolder3Col_txtSubmitCase"]')
print(said_input)
said_input.send_keys(said)
exception:
selenium.common.exceptions.NoSuchElementException: Message: Unable to locate element: [id="ctl00_ctl00_ContentPlaceHolder1_ContentPlaceHolder3Col_txtSubmitCase"]
一件事是,我已经通过单击菜单按钮之一导航到网站的另一页,它将找到该驱动程序。find_element_by_xpath将能够找到它。如果没有,我该如何浏览多个页面并填写少量表格。