2017-04-25 62 views
-6

我在我的項目中有價格範圍。我可以從左到右移動最低價格。但是,我無法知道如何從右向左移動最高價格。有人請幫助我。如何使用硒web驅動程序從右向左移動來自動化價格較高的滑塊?

+4

標記爲不清楚。在我們真正開始幫助你之前,你應該公佈更多細節。 一些更多信息:http://meta.stackoverflow.com/questions/284236/why-is-can-someone-help-me-not-an-actual-question/284237#284237 https://codeblog.jonskeet。 uk/2010/08/29/writing-the-perfect-question/ –

回答

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(); 

我試着用這個URL http://emicalculator.net/

如果是相同的,然後用這個。或者只是得到Slider元素&基於量的splitting可以左移[低]或右[高]

+0

謝謝Saravana。 –

相關問題