Skip to content
Snippets Groups Projects
Commit b28d85bc authored by Sereza7's avatar Sereza7 Committed by Simon Urli
Browse files
parent 2740974c
No related branches found
No related tags found
No related merge requests found
......@@ -174,7 +174,9 @@ public String getFormAction()
public SelectElement getSelectElement(By by)
{
return this.new SelectElement(getFormElement().findElement(by));
WebElement element = getFormElement().findElement(by);
getDriver().scrollTo(element);
return this.new SelectElement(element);
}
public class SelectElement extends BaseElement
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment