为什么会出现错误AttributeError:'WebDriver'对象没有属性'executes_script'

时间:2018-10-17 08:16:12

标签: python selenium

获取self.driver.executes_script行错误
self.driver.executes_script(“ arguments [0] .click();”,new_notification) AttributeError:“ WebDriver”对象没有属性“ executes_script” 没有
但它们是带有它的班级名称

[image lockFocus]; … [image unlockFocus];

1 个答案:

答案 0 :(得分:0)

您只是有错字:

self.driver.executes_script("arguments[0].click();", new_notification)

executes_script不存在,但是基于api-doc,您可能会说:execute_script

DOC: WebDriver.execute_script