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.
Tabbed Recording
Hi ,
I need to open few Tabs and perform some action while recording . While playback in SAHI it doesnt works (Firefox & IE) . Its not opening different TABS and perform all action on the same TAB.
I need to open few Tabs and perform some action while recording . While playback in SAHI it doesnt works (Firefox & IE) . Its not opening different TABS and perform all action on the same TAB.
Answers
A script written in this manner should meet your requirement.
_call(window.open('http://www.google.com','some_window_name'));
_popup("some_window_name")._setValue(_textbox("q"),"123"); // some action on the new window.
Regards.