1

我在使用 Selenium Webdriver(版本 2.32.0)和 Firefox(21.0)时遇到问题,试图更改滑块上的值。

我写了一个这样的Java代码:

private void selectGiftCardPrice() throws TestingException {
        try {
            WebElement slider = getDriver().findElement(
                    By.cssSelector("div.sliderHandle"));
            Actions move = new Actions(getDriver());
            move.dragAndDropBy(slider, 90, 0);
            move.build().perform();
            sleep(4000);
        } catch (Exception e) {
            log.info(e);
            throw new TestingException("e");
        }

我尝试了我在网上找到的每一个代码,每一个更改,但它仍然无法正常工作。它没有显示任何问题,只是找到了元素,什么都不做。知道它是什么,或者我能做什么?

从评论编辑:

我终于使它与jQuery 滑块演示一起使用

driver.get("http://jqueryui.com/resources/demos/slider/multiple-vertical.html");
WebElement slider = driver.findElement(By.xpath("//div[1]/a[contains(@class,'ui-slider-handle')]"));‌

但它仍然不适用于使用 Xpath的jQuery UI Slider 演示页面//div[@id='slider']/a。问题是什么?

4

2 回答 2

1

这段代码对我来说绝对没问题。程序处理网站的滑块:Homeshope18.com 看看:

WebDriver driver = new FirefoxDriver();
driver.get("http://www.homeshop18.com/fashion-jewellery/category:15143/filter_Theme:%28%22Traditional+Wear%22+%22Cuff+%26+Kada%22+%22Daily+Wear%22+%22Maang+Tikka%22+%22Openable+Round%22+%22Round%22+%22Openable+Oval%22%29/sort:Popularity/inStock:true/?it_category=HP&it_action=JW-HPSP01&it_label=HP-HPSP01-131021235900-PD-JW-ZC-VK-SC_DiwaliFestWeddingJewellery&it_value=0");

WebElement slider = driver.findElement(By.xpath("//*[@id='slider-range']/a[1]"));
Thread.sleep(3000);

Actions moveSlider = new Actions(driver);
Action action = moveSlider.dragAndDropBy(slider, 30, 0).build();

action.perform();
于 2013-10-22T10:29:25.317 回答
0

使用 Actions 类,首先使用clickAndHold("WebElemnt");

然后水平移动,我们需要在屏幕的 Y 方向移动,这样我们就可以使用movebyoffset,即 X 轴:0 & Y 轴:40px

要垂直移动,我们需要在屏幕的 X 方向上移动,这样我们就可以使用movebyoffset,即 X 轴:40px & Y 轴:0

示例代码是:

Actions slider=new Actions(driver);
slider.clickAndHold("WebElemnt");
slider.movebyoffset(0,40).build.perform();
于 2018-01-09T08:41:31.077 回答