Replies: 1 comment
-
Solved. |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
-
Hello! Trying this code to simulate mouseclick on particular webelement. Previously I focus on it.
browser.GetBrowser().GetHost().SendMouseClickEvent(0, 0, MouseButtonType.Left, false, 1, CefEventFlags.None); System.Threading.Thread.Sleep(100); browser.GetBrowser().GetHost().SendMouseClickEvent(0, 0, MouseButtonType.Left, true, 1, CefEventFlags.None);
However it doesnt works. Maybe I need to set element coordinates (x and y) instead of 0 ? But how can I find element coordinates?
Beta Was this translation helpful? Give feedback.
All reactions