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.
Sahi case sensitive problem
Hello,
I have a problem across different browsers where some fields are lower case on one browser and upper case on another. One person suggested using _click(_link("/Next/i")); which works for the most part but I have one item on my web page with brackets in the name and this approach does not work i.e.
_assert(_isVisible(_link("/Noticeboard(Active Tab)/i")));
...any ideas on how to overcome this? I know I can use other options from the drop down choices but would rather use this name if possible. I am running Sahi 4.3 open source.
Regards
Alex
I have a problem across different browsers where some fields are lower case on one browser and upper case on another. One person suggested using _click(_link("/Next/i")); which works for the most part but I have one item on my web page with brackets in the name and this approach does not work i.e.
_assert(_isVisible(_link("/Noticeboard(Active Tab)/i")));
...any ideas on how to overcome this? I know I can use other options from the drop down choices but would rather use this name if possible. I am running Sahi 4.3 open source.
Regards
Alex
Answers
Please try with: _assert(_isVisible(_link("/Noticeboard[(]Active Tab[)]/i")));
Regards.