我正在尝试使 worldcheck 网站自动化。我无法通过 selenium IDE 填充搜索框。对于脚本,我正在使用 Python
I'm trying to automate the worldcheck website. I'm unable to fill the search box through selenium IDE. For Scripting i'm using Python
<div class="input-con">
<input id="name" name="name" type="text" value="mohammed ali thani">
</div>
这是 Selenium 中用于填充输入字段的行代码。
driver.find_element_by_id("name").click()
driver.find_element_by_id("name").clear()
driver.find_element_by_id("name").send_keys("mohammed ali thani")
显示错误:无法定位元素:{"method":"css selector","selector":"#name"}
尝试使用 find_element_by_xpath()
driver.find_element_by_xpath('//*[@id="name"]').send_keys("mohammed ali thani")
此外,我建议在 driver.find_element_by_id("name").click()
之后使用 driver.wait()
<div class="input-con">
<input id="name" name="name" type="text" value="mohammed ali thani">
</div>
这是 Selenium 中用于填充输入字段的行代码。
driver.find_element_by_id("name").click()
driver.find_element_by_id("name").clear()
driver.find_element_by_id("name").send_keys("mohammed ali thani")
显示错误:无法定位元素:{"method":"css selector","selector":"#name"}
尝试使用 find_element_by_xpath()
driver.find_element_by_xpath('//*[@id="name"]').send_keys("mohammed ali thani")
此外,我建议在 driver.find_element_by_id("name").click()
driver.wait()