刘方林
发布于 2023-08-11 / 5 阅读 / 0 评论 / 0 点赞

ActionChains函数

ActionChains函数

可代替无法定位元素

ele=driver.find_element(By.XPATH,'//*[@id="advanced_search_departmentId"]')尾句 perform()必须带
ActionChains(driver).move_to_element_with_offset(ele,0,100).click().perform()


评论