#定位元素
pod_input = driver.find_element(By.ID, 'j_idt9:searchForm:j_idt11:toSelectorLocation:toSelectorLocation_input')

#双击这个 pod_input
from selenium.webdriver import ActionChains
action_chains = ActionChains(driver)
action_chains.double_click(pod_input).perform()

 

相关文章:

  • 2021-12-29
  • 2021-07-22
  • 2021-09-30
  • 2021-05-06
  • 2022-02-01
  • 2021-10-27
  • 2021-12-09
猜你喜欢
  • 2021-07-08
  • 2021-08-18
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2021-11-07
  • 2022-12-23
相关资源
相似解决方案