java+selenium+new——模拟鼠标右键操作——action类
Posted 小白龙白龙马
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了java+selenium+new——模拟鼠标右键操作——action类相关的知识,希望对你有一定的参考价值。
package rjcs; import org.openqa.selenium.By; import org.openqa.selenium.Keys; import org.openqa.selenium.WebElement; import org.openqa.selenium.firefox.FirefoxDriver; import org.openqa.selenium.interactions.Actions; public class a { public static void main(String[] args) { System.setProperty("webdriver.firefox.bin","C:\\\\Program Files (x86)\\\\Mozilla Firefox\\\\firefox.exe"); //设置火狐的安装路径,防止系统找不到 FirefoxDriver driver = new FirefoxDriver(); //初始化FireFox浏览器实例,并打开浏览器 try { driver.manage().window().maximize(); //最大化窗口 Thread.sleep(5000); driver.get("https://www.baidu.com"); Thread.sleep(5000); Actions action = new Actions(driver); Thread.sleep(5000); action.contextClick(driver.findElementByLinkText("地图")).perform(); //鼠标在某个元素上右击 Thread.sleep(5000); action.contextClick(driver.findElementById("kw")).perform(); Thread.sleep(10000); }catch (Exception e) { e.printStackTrace(); }finally { driver.quit(); } } }
以上是关于java+selenium+new——模拟鼠标右键操作——action类的主要内容,如果未能解决你的问题,请参考以下文章
java+selenium+new——模拟——单击鼠标左键不释放以及释放的操作——action类
13.Selenium鼠标和键盘操作模拟鼠标操作页面元素(了解)