Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Move target out of bounds exception

I am writing tests for a web application and all went well until I had to choose an option from a menu and that option displays a drop down list when hovered or clicked. When I click an option from the drop down list, I get the following error:

MoveTargetOutOfBoundsException: Element cannot be scrolled into view

Does anyone know what this error is about and what I should look for in my code?

Selenium version 2.25.0, java version 1.6.0_31

I've been checking some selenium and google groups regarding this issue in older versions https://groups.google.com/forum/?fromgroups=#!topic/selenium-users/EuZ7a6_lB9Q http://code.google.com/p/selenium/issues/detail?id=3075 http://code.google.com/p/selenium/issues/detail?id=4102

a more recent discussion

Is it a known issue for Selenium 2.25.0 or is there a way to fix it? I recently upgraded to Firefox 15.0 :|

Note: I found a temporary solution until someone magically fixes this...since I can't find where the problem is... I run the code before that point where it crashes, I put it to sleep for 10 seconds, I manually click the menu and the option from the drop down list, the window I want is displayed and the code continues with actions from that point. It works for now...I hope this will be fixed since I can't believe that I can run a script in Selenium IDE but I can't run my java code in WebDriver ...this is crazy :|

like image 904
Michiru Avatar asked Aug 31 '12 12:08

Michiru


People also ask

What is move target out of bounds exception in selenium?

MoveTargetOutOfBoundsException: ... implies that Selenium was unable to focus on the desired element as the element was out of bounds of the viewport. Your main issue is the WebElement identified as button is out of Viewport so Selenium can't move the focus on the desired element through moveToElement() method.

How do I move an element to selenium?

Move to Element and Click in Selenium | Move To Element is a kind of action on the web page in which the mouse cursor moves to a WebElement. To move the mouse cursor to a WebElement, we use the moveToElement() method of actions class in Selenium WebDriver.

How can we access a element which is not clickable?

The exception “Element is not clickable at point” might be thrown when the element is not under focus or the action is being performed on the incorrect WebElement. In such cases, you have to switch to the actual element and perform the click action.


1 Answers

I guess you are trying to click an element from a dropdown. You should keep in mind, that Selenium helps you replicate exact human behavior. So if the code fails because the element is not visible, it is probably because the element is not visible.

To make it work, you might want to put a click command on the menu before the failing bit of code. (to replicate the sleep 10 seconds manually click the menu button method you are using)

Once again, if you can show us your code and also the HTML snippet of the Menu section, we can provide an exact solution.

like image 83
Amey Avatar answered Dec 19 '22 16:12

Amey