如何在 Selenium 中对一个元素执行双击操作?
借助 `Actions` 类,我们可以在 Selenium 中对元素执行双击操作。为了执行双击操作,我们将使用 `moveToElement()` 方法,然后使用 `doubleClick()` 方法。最后,使用 `build().perform()` 来执行所有步骤。
示例
import org.openqa.selenium.By; import org.openqa.selenium.Keys; import org.openqa.selenium.WebDriver; import org.openqa.selenium.WebElement; import org.openqa.selenium.chrome.ChromeDriver; import org.openqa.selenium.interactions.Action; import org.openqa.selenium.interactions.Actions; import java.util.concurrent.TimeUnit; public class DoubleClick{ public static void main(String[] args) { System.setProperty("webdriver.chrome.driver", "C:\Users\ghs6kor\Desktop\Java\chromedriver.exe"); WebDriver driver = new ChromeDriver(); String url = "https://tutorialspoint.com/questions/index.php"; driver.get(url); driver.manage().timeouts().implicitlyWait(12, TimeUnit.SECONDS); // doubleClick() method for double click to an element after moving to //element to with the moveToElement() Actions a = new Actions(driver); a.moveToElement(driver.findElement(By.xpath(“input[@type=’text’]))). doubleClick(). build().perform(); driver.quit(); } }
广告