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 not reading changes in excel file.
Hi my script is supposed to read data from an excel file to proceed. It gets the value of a variable from the file. If it is '6', it is supposed to follow some steps and if it is '5.1' it should follow a different path. It reads 5.1 but when i try '6' it doesn't seem to pick it up.
if($version != '5.1')
{
_click(_radio("any"));
_click(_submit("Continue"))
_click(_button("OK"));
_click(_submit(" Continue "));
}
if($version == '5.1')
{
_click(_submit("Continue"));
//_click(_submit("Continue with these seats"));
_click(_button(" Continue "));
_click(_button("No Thanks"));
}