How to skip opening of browser

Hello,
I’m trying to make multiple registration for one of my tests. I managed to make it read information from the excel file but now it open the browser after every entry which is slowing down the process. Is there a way to skip this.
I have tried with Execute from here - didn’t work. Also tried with for and while loops. It works but read only first row of the file.

Thanks

make filling form a separate test case - TC1
then create test case - parent P1 that will call filling form TC1
in P1 use openBrowser command and in TC1 use navigateTo command to use already opened browser from P1.
also close browser should be handled by P1

1 Like

Thank you!