18 January 2026:
Sahi Pro is an enterprise grade test automation platform which can automate web, mobile, API, windows and java based applications and SAP.
This forum is now archived and is in read-only mode. Please continue discussions on our improved new Sahi Pro Community forum.
Sahi Pro is an enterprise grade test automation platform which can automate web, mobile, API, windows and java based applications and SAP.
Does setValue fire change event?
Hi, I just started using Sahi. I decided to use the Java client (actually from Scala).
My webapp has a text input with a change event handler that makes an ajax call to update the browser. How do I trigger it? Normally I would type something in the text field and hit Enter or Tab.
Thanks.
My webapp has a text input with a change event handler that makes an ajax call to update the browser. How do I trigger it? Normally I would type something in the text field and hit Enter or Tab.
Thanks.
Comments
_setValue(_textbox("searchBox"), "I Like Eggs");
_keyPress(_textbox("searchBox"), [13,13]); // return key...
B
You can use the API _blur(el) to perform a focusout event on it.
Regards.