Selenium moveByOffset doesn't do anything

前端 未结 5 1958
轻奢々
轻奢々 2021-01-06 17:08

I\'m running latest selenium 2.41 with Firefox 28.0 on Linux Xubuntu 13.10

I\'m trying to get FirefoxDriver to move the mouse over the page (in my test, I\'ve used

相关标签:
5条回答
  • 2021-01-06 17:18

    I struggled as well getting drag and drop working.

    It seems as if selenium has problems if the dragtarget is not visible, thus scrolling is requiered.

    Anyway, that's the (Java) code that works. Note that I call "release()" without an argument - neither the dropable Element nor the dragable Element as argument worked for me. As well as "moveToElement(dropable)" didnt work for me, that's why I calculated the offset manually.

    public void dragAndDrop(WebElement dragable, WebElement dropable,
            int dropableOffsetX, int dropableOffsetY) {
        Actions builder = new Actions(driver);
    
        int offsetX = dropable.getLocation().x + dropableOffsetX
                - dragable.getLocation().x;
        int offsetY = dropable.getLocation().y + dropableOffsetY
                - dragable.getLocation().y;
    
        builder.clickAndHold(dragable).moveByOffset(offsetX, offsetY).release()
                .perform();
    }
    
    0 讨论(0)
  • 2021-01-06 17:21

    Please try using moveToElement. It should work.

    Actions action = new Actions(webdriver);
    WebElement we = webdriver.findElement(By.xpath("<XPATH HERE>"));
    action.moveToElement(we).moveToElement(webdriver.findElement(By.xpath("/expression-here"))).click().build().perform();
    
    0 讨论(0)
  • 2021-01-06 17:32

    i was also struggling with this and the solution that worked for me is below we have to add 1 to either X or Y co-ordinate.

    Looks like (x,y) takes us to the edge of the element where its not clickable

    Below worked for me

        WebElement elm = drv.findElement(By.name(str));
    
        Point pt = elm.getLocation();
    
        int NumberX=pt.getX();
        int NumberY=pt.getY();
    
        Actions act= new Actions(drv);
        act.moveByOffset(NumberX+1, NumberY).click().build().perform();
    

    you could even try adding +1 to y coordinate that also works

       act.moveByOffset(NumberX+1, NumberY).click().build().perform(); 
    
    0 讨论(0)
  • 2021-01-06 17:36

    The method moveByOffset of class Actions is or has been broken. See Selenium WebDriver Bug 3578

    (The error is described some lines more down in this bug document).

    A project member (barancev) claims that this error should have been fixed with Selenium version 2.42.

    Nevertheless I found the same error in version 2.44 running on openSUSE 12.3 with Firefox 33.0. moveToElement works, moveToOffset doesn't.

    0 讨论(0)
  • 2021-01-06 17:45

    i suggest that if your browser is not perform movetoelement and move to offset then you have put wrong offset of element for find offset you use Cordinates plugin in chrome

    0 讨论(0)
提交回复
热议问题