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.
Auto complete list is not populating at the time of recording.
In our application , if we typed a letter like T, the name starts with T was listing but at the time of recording this using sahi it was not listed. Do you have an idea why it has happened like this?
Comments
Can you post the URL of your application or point us to an example?
Regards
Sumitra
Yes, i have understood your issue. If you can share the URL or point us to an application then i can help you to resolve your issue.
Regards
Sumitra
_setValue(_textbox("empId"), "63986");
_setValue(_password("password"), "******");
_click(_link(0));
_popup("LoggedIn")._click(_link("HR Administrator"));
_popup("LoggedIn")._click(_link("Update user profile"));
Object required (autoComplete.js:103)
_popup("LoggedIn")._setValue(_textbox("txtMobile"), "***********");
--Stopped Playback: FAILURE--
auto complete.js is present in the required path but still we are getting this error. Please suggest me how to resolve it.
Kindly perform the following steps:
To turn on HTTP traffic logging:
1) Open sahi/userdata/config/userdata.properties
2) Add (or edit if already present)
debug.traffic.log.unmodified=true
debug.traffic.log.modified=true
3) Restart Sahi.
All traffic will be written to userdata/logs/traffic folder organized by date.
NOTE: RESET TRAFFIC LOGGING TO FALSE once you are done, or else the logs will quickly fill your hard disk.
Look at response.body_unmodified_xxx and response.body_modified_xxx to see if Sahi has injected code into the file. If yes, add the URL pattern to exclude_inject.txt
Note that the pattern needs to be a proper regular expression which will match the whole url. If your url is http://myapp/myajaxrequests.jsp?action=add, your regex may look like .*myajaxrequests[.]jsp.*
Let me know if this solves your issue.
Regards
Sumitra