You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Nov 29, 2018. It is now read-only.
Driver.ClickAt (X, Y) in Selenium
The clickAt x,y function doesn't work properly when the point(place) to be clicked
is under the lowest point in chrome web page. Probably scroll down operation will be
performed too in order to click in this lowest point in invisible location.
I use:
New Action(IWebDriver1)
.MoveToElement(WebElem, 0,0)
.movebyOffSet(x,y)
.click()
.build()
.perform();
Selenium version: 2.29.1
OS: Win7
Browser: google chrome
Browser version: 23.0
I will be happy to receive ideas how to solve this issue.
Thanks In advance
Yona