我不知道如何使用任何元素来点击此提交按钮。
我已经尝试使用xpath
。,
web.find_elements_by_xpath('\\input value="submit" type="submit"').click()
但是我在标题中听到了错误。
答案 0 :(得分:2)
您传递给find_elements_by_xpath()
的内容看起来不像XPath
。另外find_elements_by_xpath()
应该返回一个没有属性click()
的列表。请尝试使用以下代码:
web.find_element_by_xpath('//input[@value="submit" and @type="submit"]').click()