标签:for 测试 targe com move @class .exe click argument
当我们做测试的时候,如果页面过长,就会定位元素失败,这时可以使用move_to_element方法跳到该元素的位置再操作:
from selenium.webdriver.common.action_chains import ActionChains
target = driver.find_element(By.XPATH, "//i[@class=‘EPLI_Ext‘]")
driver.execute_script("arguments[0].scrollIntoView();", target)
ActionChains(driver).move_to_element(driver.find_element(By.XPATH, "//i[@class=‘EPLI_Ext‘]")).click().perform()
标签:for 测试 targe com move @class .exe click argument
原文地址:https://www.cnblogs.com/AmyHu/p/10726011.html