Selenium鼠标拖拽技巧

需要一连串连贯的动作配合起来:mousedown、mousemove、mouseup,缺了哪个都不行,顺序不对也不行。

如何进行拖拽:

这时候我们就需要用到 org.openqa.selenium.interactions.Actions 这个类了,它专门用来做动作组合的。 Actions 中有若干方法,可以让你很容易的生成 鼠标、按键的操作集合。
    例如: clickAndHold + moveToElement + release 就可以组合成一套拖拽的操作;
    详细内容还请查看 Selenium 的 javadoc:http://selenium.googlecode.com/svn/trunk/docs/api/java/index.html 

     生成操作组合后,利用 build 方法可以得到一个有效的 Action 对象;最后使用 perform 方法执行就可以了。

    和昨天测试鼠标移动的情况类似,还是 FireFox 问题最大, IE8 有小问题, Chrome 测试最正常。

FireFox:使用 moveToElement 方法时,效果同昨天使用 MoveToOffsetAction 情况类似,xOffset、yOffset值无论如何设置,在页面上得到的都是 指定的 页面元素;
    另外,如果在不使用 moveToElement的时候就使用moveByOffset 很容易报错:org.openqa.selenium.interactions.MoveTargetOutOfBoundsException: Element cannot be scrolled into view: (WARNING: The server did not provide any stacktrace information)

IE8: 使用 moveToElement 方法时,如果用到了 xOffset、yOffset 参数,你会发现在 IE8中 计算的情况 和 Chrome 上不太一样,貌似范围会更大一些,因此导致如果设置为0, 0 时,就不是你预期的结果了

测试代码我分成了3个部分:

· 观察反复拖拽测试 1 

   可以专门用来观察 moveToElement 在不同浏览器下的情况
 

· 观察反复拖拽测试 2 

   可以专门用来观察 moveByOffset 在不同浏览器下的情况,FireFox 会报错
 

· 观察系列操作测试 

   可以专门用来观察 多种组合操作 在 不同浏览器下的情况

    总之,对于鼠标移动和拖拽的测试还是直接在 Chrome 下进行就可以了吧;ie的只能略微参考;剩下的还是自己手动来吧。。。。
    如果想在 IE 上正常测试,建议采用moveToElement(WebElement)+ moveByOffset(xOffset, yOffset); 避免直接使用 moveToElement(WebElement, xOffset, yOffset),同时还是要严格注意 xOffset 和 yOffset 的设置;这个需要根据自己的实际情况来调试了。

package lesson07;
import org.junit.AfterClass;
import org.junit.BeforeClass;
import org.junit.Test;
import org.openqa.selenium.HasInputDevices;
import org.openqa.selenium.JavascriptExecutor;
import org.openqa.selenium.WebDriver;
import org.openqa.selenium.WebElement;
import org.openqa.selenium.chrome.ChromeDriver;
import org.openqa.selenium.firefox.FirefoxDriver;
import org.openqa.selenium.ie.InternetExplorerDriver;
import org.openqa.selenium.interactions.Action;
import org.openqa.selenium.interactions.Actions;
import org.openqa.selenium.interactions.MoveMouseAction;
import org.openqa.selenium.interactions.MoveToOffsetAction;
import org.openqa.selenium.internal.Locatable;
import org.openqa.selenium.support.ui.ExpectedCondition;
import org.openqa.selenium.support.ui.WebDriverWait;
import util.Common;
public class ExampleForDrag  {
 
    static WebDriver driver;
    
    @BeforeClass
    public static void init() {
     System.out.println("init...");
     //用 Chrome
//     System.setProperty(
//    "webdriver.chrome.driver",
//    "E:\\BaiduWangPan\\百度网盘\\javascript\\Selenium WebDriver\\chromedriver_win_23.0.1240.0\\chromedriver.exe");
//     driver = new ChromeDriver();
     
     //用 IE
//     driver = new InternetExplorerDriver();
     
     //用 FireFox
     System.setProperty("webdriver.firefox.bin", "D:\\Program Files\\Mozilla Firefox\\firefox.exe");
     // 创建一个 FireFox 的浏览器实例
     driver = new FirefoxDriver();
    }
 
    @Test
    public void test() {
     // 让浏览器访问 zTree Demo
     driver.get("http://www.ztree.me/v3/demo/cn/exedit/drag.html");
     
     // 等待 zTree 初始化完毕,Timeout 设置10秒
     try {
      (new WebDriverWait(driver, 10, 500)).until(new ExpectedCondition<Boolean>() {
       public Boolean apply(WebDriver d) {
        WebElement element = (WebElement) ((JavascriptExecutor)driver).executeScript("return $('#treeDemo li').get(0);");
        return element != null;
       }
      });
      
     } catch(Exception e) {
      e.printStackTrace();
     }
     
     //找到第一个根节点的子节点
     ((JavascriptExecutor)driver).executeScript("window.zTreeObj = $.fn.zTree.getZTreeObj('treeDemo');"
       + "window.zTreeNodeSrc = window.zTreeObj.getNodes()[0].children[0];");
     
     //获取 需要拖拽的节点对象 
     WebElement elementSrc = (WebElement) ((JavascriptExecutor)driver).executeScript("return $('#' + window.zTreeNodeSrc.tId + '_a').get(0)");
     //获取 目标节点对象 
     WebElement elementTarget = (WebElement) ((JavascriptExecutor)driver).executeScript("window.zTreeNodeTarget = window.zTreeNodeSrc.getNextNode().children[0]; return $('#' + window.zTreeNodeTarget.tId + '_a').get(0)");
     Actions actions = new Actions(driver);
     Action action;
     //观察反复拖拽测试 1
//     actions.clickAndHold(elementSrc);
//     for (int i=0; i<500; i++) {
//      actions.moveToElement(elementTarget, i%100-50, i%50-20);
//     }
//     actions.release();
//     action = actions.build();
//     action.perform();
//     
//     Common.waitFor(10, driver);
     //观察反复拖拽测试 2
//     actions.clickAndHold(elementSrc).moveToElement(elementTarget);
//     int x = 0, y = 0, dx=2, dy=2;
//     for (int i=0; i<500; i++) {
//      x+=2; y+=2;
//      if (x > 50) {
//       dx = -x;
//       x = 0;
//      } else {
//       dx = 2;
//      }
//      if (y > 150) {
//       dy = -y;
//       y = 0;
//      } else {
//       dy = 2;
//      }
//      actions.moveByOffset(dx, dy);
//     }
//     actions.release();
//     action = actions.build();
//     action.perform();
//     Common.waitFor(10, driver);
     
     //观察系列操作测试
     System.out.println("移动成为目标节点的 前一个节点");
     actions.clickAndHold(elementSrc).moveToElement(elementTarget, 60, 1).release();
     action = actions.build();
     action.perform();
     
     // 等待 10 秒
     Common.waitFor(10, driver);
     
     System.out.println("移动成为目标节点的后一个节点");
     actions.clickAndHold(elementSrc).moveToElement(elementTarget, 60, 38).release();
     action = actions.build();
     action.perform();
     
     // 等待 10秒
     Common.waitFor(10, driver);
     
     System.out.println("移动成为目标节点的子节点");
     actions.clickAndHold(elementSrc).moveToElement(elementTarget).release();
     action = actions.build();
     action.perform();
     
     // 等待 10秒
     Common.waitFor(10, driver);
     System.out.println("移动成为目标节点下一个节点的子节点");
     actions.clickAndHold(elementSrc).moveToElement(elementTarget).moveByOffset(0, 20).release();
     action = actions.build();
     action.perform();
     
     // 等待 10秒
     Common.waitFor(10, driver);
     
    }
    
    @AfterClass
    public static void destory() {
     System.out.println("destory...");
     //关闭浏览器
     driver.quit();
    }
}

 

 

转载于:https://my.oschina.net/jimmylee216/blog/827910

  • 0
    点赞
  • 2
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值