答案 0 :(得分:1)
示例网址:http://talkerscode.com/webtricks/demo/demo_price-range-slider-using-jquery-css-and-php.php
driver.get("http://talkerscode.com/webtricks/demo/demo_price-range-slider-using-jquery-css-and-php.php");
Actions act = new Actions(driver);
WebElement pricebar = driver.findElement(By.xpath("//div[@id='slider-range']//span[2]"));
act.dragAndDropBy(pricebar, 100, 0).build().perform();
上面的代码会将滑块移动100个像素。
然后,正如我在图像中看到的那样,一旦使用断言语句移动滑块,您就可以验证预期的数量是否已更新。