首页 > 其他分享 >testNG中拖拽元素到指定位置

testNG中拖拽元素到指定位置

时间:2022-08-24 13:57:28浏览次数:70  
标签:el 元素 dragAndDropBy 指定 testNG action 拖拽

为了改变元素在页面中的位置,需要拖拽元素到指定位置

记录一下

1、先定位到要拖拽的元素

Actions action = new Actions(driver);

WebElement  el = driver.findElement(By.xpath("xxxx"));

//使用action的dragAndDropBy方法,action.dragAndDropBy(source,xOffset,yOffset),其中x:左负右正,y:上负下正

action.dragAndDropBy(el,0,-100).perform();//将el元素向上拖动100个像素点

有的时候需要增加等待才能生效

标签:el,元素,dragAndDropBy,指定,testNG,action,拖拽
From: https://www.cnblogs.com/duhongjin/p/16619628.html

相关文章