这是美团外卖小程序搜索时,出现的 send_keys 报错 cannot focus element

网页元素

用了三种方法
第一种方法,报错 cannot focus element

ele = driver.find_element_by_class_name('index-search-input')
ele.click()
ele.send_keys('test')

第二种方法,没有报错,但是通过页面看并没有赋值成功

action = ActionChains(driver)
action.send_keys("test").perform()

第三种方法,用 adb shell input text 可以成功赋值,但是这种不支持中文
type 确实是 text,不明白前 2 种方式的问题在哪里,有哪位了解的可以解答一下吗谢谢


↙↙↙阅读原文可查看相关链接,并与作者交流