当前位置: 代码迷 >> 综合 >> python selenium定位元素报:error: cannot focus element
  详细解决方案

python selenium定位元素报:error: cannot focus element

热度:1   发布时间:2023-12-02 06:43:53.0

解决办法,通过ActionChains

from selenium.webdriver import ActionChains
action = ActionChains(self.driver)
action.move_to_element(el)
action.click(el)
action.send_keys("SELECT * FROM `channel` ")
action.perform() #这个一定要的
  相关解决方案