18 January 2026:


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.

Parallel Run for a Test Scenario

Hi,

I have one excel sheet with one column data 8000 rows
Getting executed in single session taking 10 sec per trip

How i can run it in parallel? below is loop i am using to run through each excel row of that single column data

for (var $row=0; $row<$max; $row++){

var $empNum = $ToreadEmployeeNumber.get($row,0);
_click(_button("Search"));
_click(_textbox("SOME"));
_type(_textbox("SOME"), $Client);
_click(_div("x-combo-list-item x-combo-selected"));
_setValue(_textbox("ID"), $empNum);
_click(_submit("Search"));
_wait(2000);


//If DIv exists then use it
if(_exists(_div($empNum))){

_click(_div($empNum));
_wait(2000);
_click(_button("Get Status"));
_wait(5500);
//_takePageScreenShot();

}

}


thanks
Sign In or Register to comment.