我的项目中有价格范围。我可以从左到右移动最低价格。但是,我无法得到如何从最右边移动到最左边的价格。有人请帮助我。
答案 0 :(得分:0)
如果我是正确的话,请尝试以下代码。
WebElement el = wMethods.findElementById("loanamountslider");
WebElement slider = el.findElement(By.tagName("span"));
List<WebElement> amountdetails = wMethods.findElementsByXpath("//*[@id='loanamountsteps']/span/span"); //Retrieved the amount splitups
for (WebElement element : amountdetails){
System.out.println("Amounts: "+element.getText());
}
Actions move = new Actions(driver);
move.dragAndDrop(slider, amountdetails.get(amountdetails.size()-1));
move.perform();
我尝试使用此网址http://emicalculator.net/
如果相同,则使用此方法。或者只是获得Slider元素和&amp;根据金额分割,左移[低]或右[高]