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.
It is possible to concatenate strings in Sahi ?
Hello there,
Anybody has an idea how to concatenate more than 2 strings using Sahi?
e.g.:
$username = _random (1000000); // Generate a random string
$domain = "domain";
_setValue (_textbox("email_address"), $username."at".$domain.".com")
I want that the email address to be $username at $domain.com or something like that.
Thanks,
Mihai
Anybody has an idea how to concatenate more than 2 strings using Sahi?
e.g.:
$username = _random (1000000); // Generate a random string
$domain = "domain";
_setValue (_textbox("email_address"), $username."at".$domain.".com")
I want that the email address to be $username at $domain.com or something like that.
Thanks,
Mihai
Comments
http://www.w3schools.com/js/js_operators.asp
Mihai