selenium.common.exceptions.InvalidArgumentException: Message: invalid argument: invalid locator
报错信息:invalid argument: invalid locator
提示的是 定位器 locator 的 参数 argument 是无效的,
为什么无效,是我代码写错了,
driver.find_element(
'//*[@id="staffid'
).send_keys(‘handsome’)
定位器 locator 少了最重要的参数 By.XPATH
正确的代码如下:
driver.find_element(
By.XPATH,'//*[@id="staffid"]'
).send_keys(“handsome”)文章来源:https://www.toymoban.com/news/detail-823451.html
所以说,自己写的代码,自己就很难发现错误,要仔细。
February the 15th 2023 Wednesday文章来源地址https://www.toymoban.com/news/detail-823451.html
到了这里,关于selenium driver.find_element 报错 invalid argument: invalid locator的文章就介绍完了。如果您还想了解更多内容,请在右上角搜索TOY模板网以前的文章或继续浏览下面的相关文章,希望大家以后多多支持TOY模板网!