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.
browser info
I know I can get the script status and the script name... is there something I can call to get the browser information??
Comments
I hope this helps!!
http://sahi.co.in/forums/viewtopic.php?id=2355
Regards,
Akshada
yes you can, there is an function _scriptName() in the Sahi API... I hope it works.
for browser information you could use navigator.appVersion
[Edit] or just follow the link above
Regards
Wormi
$diag = _sahi.getDiagnostics();
I don't mind using navigator.appVersion but dont understand how could someone give me an example. I am simply wanting to create a variable that tells the browser I am using and the version of that browser.
To get navigator.appVersion
var $appV = "";
_set($appV, navigator.appVersion);
_alert($appV);
Regards,
Narayan
secondly thank you for the help.. it is greatly appreciated.