cannot focus element解决方案

Posted Amy_Hu

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了cannot focus element解决方案相关的知识,希望对你有一定的参考价值。

If you enconter error "cannot focus element" when using Selenium+Python in Chrome to input value, you can use below code instead:

 

from selenium.webdriver.common.action_chains import ActionChains

element1 = driver.find_element_by_id("inputCtrl0")

ActionChains(driver).click(element1).send_keys("111").perform()

 

以上是关于cannot focus element解决方案的主要内容,如果未能解决你的问题,请参考以下文章