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.
Accessor Repository and Locallization (Language) Tip
in Sahi Pro
Some of you may be wondering how to use AR along with properties file for localization. Here is the sample script
setLanguage("../MYSW_propertiesfiles/de.properties","../MYSW_propertiesfiles/en.properties");
_include("test_ar.sah"); // Comes after setting the language
_assertVisible($_SPAN_BUZZ);
_click($_SPAN_BUZZ);
_click($_SPAN_MANUFACTURERS);
Note that you can easily get properties file from developers. If they don't have one readily available, you can use messages hyperlink for your application URL to get properties for specific languages.
setLanguage("../MYSW_propertiesfiles/de.properties","../MYSW_propertiesfiles/en.properties");
_include("test_ar.sah"); // Comes after setting the language
_assertVisible($_SPAN_BUZZ);
_click($_SPAN_BUZZ);
_click($_SPAN_MANUFACTURERS);
Note that you can easily get properties file from developers. If they don't have one readily available, you can use messages hyperlink for your application URL to get properties for specific languages.