Selenium webdriver can't click on a link outside the page

40,017

Solution 1

It is actually possible to scroll automatically to element. Although this is not a good solution in this case (there must be a way to get it working without scrolling) I will post it as a workaround. I hope someone will come up with better idea...

public void scrollAndClick(By by)
{
   WebElement element = driver.findElement(by);
   int elementPosition = element.getLocation().getY();
   String js = String.format("window.scroll(0, %s)", elementPosition);
   ((JavascriptExecutor)driver).executeScript(js);
   element.click();
}

Solution 2

I posted this same answer in another question so this is just a copy and paste.

I once had a combo box that wasn't in view that I needed to expand. What I did was use the Actions builder because the moveToElement() function will automatically scroll the object into view. Then it can be clicked on.

WebElement element = panel.findElement(By.className("tabComboBoxButton"));

Actions builder = new Actions(this.driver);

builder.moveToElement(element);
builder.click();
builder.build().perform();

(panel is simply a wrapped element in my POM)

Solution 3

Instead of move the scrollbar to the button position, which sometimes it didn't work for me, I send the enter key to the button

var element = driver.FindElement(By.Id("button"));
element.SendKeys(Keys.Enter);

Solution 4

I ran into a similar problem recently when there was a list of selectable objects in a JS dialog. Sometimes selenium would not select the correct object in the list. So i found this javascript suggestion:

WebElement target = driver.findElement(By.id("myId"));
((JavascriptExecutor) driver).executeScript("arguments[0].scrollIntoView(true);", target);
Thread.sleep(500); //not sure why the sleep was needed, but it was needed or it wouldnt work :(
target.click();

That solved my issue

Solution 5

Hey you can use this for ruby

variable.element.location_once_scrolled_into_view

Store the element to find in variable

Share:
40,017
Stilltorik
Author by

Stilltorik

Updated on July 15, 2021

Comments

  • Stilltorik
    Stilltorik almost 3 years

    I am having an issue with Selenium WebDriver. I try to click on a link that is outside the window page (you'd need to scroll up to see it). My current code is fairly standard:

    menuItem = driver.findElement(By.id("MTP"));
    menuItem.click();
    // I also tried menuItem.sendKeys(Keys.RETURN);
    

    I know I could scroll up, and it would work in this case. But in a case where you have a long list of items, you don't necessarily know how far you have to scroll down.

    Is there any way to click on a link that is not on the visible part of the page (but that would be visible if you scroll)?

    As a side note, I'm using Firefox, but I am planning to use IE7/8/9 and Chrome as well.

    Any help would be greatly appreciated.

    Edit: I'm afraid I can't give the source code, as the company I work for doesn't allow it, but I can give the code of the link I want to click on:

    <div class="submenu">
      <div id="MTP">Link title</div>
    </div>
    

    The exact same code works when the link is visible, only when it is not does it not work.

    Edit2: Actually, oddly enough, it doesn't raise any exception and just goes to the next instruction. So basically, what happens is:

    menuItem = driver.findElement(By.id("MTP")); // no exception
    menuItem.click();  // no exception
    //... some code ensuring we got to the next page: timeout reached
    driver.findElement(By.id("smLH")).click(); // NoSuchElementException, as we're on the wrong page.