<div dir="ltr">Hi,<br><br>I added a little helper class called UIHelper in <a href="https://trac.webkit.org/changeset/209780">https://trac.webkit.org/changeset/209780</a> to provide an abstraction around eventSender and UIScriptController so that you can trigger a click or a tap at a specified coordinate without having to worry about which platform you’re on.<div><br></div><div>This is useful if the only thing you’re trying to do is to activate some element (e.g. hyperlink, click event handler, etc…) in both DumpRenderTree and WebKitTestRunner on both macOS and iOS.</div><div><br></div><div><b>Background</b>: iOS WebKit2 port doesn’t have eventSender due to its architecture.  As a result, we have UIScriptController which executes JavaScript in the UIProcess to trigger key events and touch there.  However, Mac port’s WebKitTestRunner doesn’t support tap (due to the lack of support for touch events).  Furthermore, UIScriptController isn’t available in DumpRenderTree on both macOS and iOS.  This makes writing a test to activate an element via user interaction that works in DumpRenderTree and WebKitTestRunner across macOS and iOS extremely challenging.  UIHelper script I added will make this easier by providing an abstraction around eventSender and UIScriptController by wrapping those internal APIs.</div><div><br></div><div><div>- R. Niwa<br><div><br></div></div></div></div>