📜  python控制浏览鼠标selenium - Python代码示例

📅  最后修改于: 2022-03-11 14:45:44.226000             🧑  作者: Mango

代码示例1
driver = webdriver.Firefox(executable_path=driver_path)
action = webdriver.ActionChains(driver)
element = driver.find_element_by_id('your-id') # or your another selector here
action.move_to_element(element)
action.perform()