如何通过 Selenium 中的操作在元素上执行右键单击?
借助操作,我们可以对 Selenium 中的元素执行右键单击。为了执行右键单击操作,我们将使用 contextClick () 方法。首先,我们需借助 moveToElement () 方法将鼠标移动到特定元素,然后使用 contextClick () 方法进行右键单击。最后,使用 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 RightClick{ 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); // contextClick() method for right click to an element after moving the //mouse to with the moveToElement() Actions a = new Actions(driver); a.moveToElement(driver.findElement(By.xpath(“input[@type=’text’]))). contextClick(). build().perform(); driver.quit(); } }
广告