Running multiple test suites through same session

Hi everyone,
I need to run multiple test suites (.robot files) within the same browser session
Is that applicable for robot framework?

Hi Abdullah,

Sure robot framework can do that, which Library are you using? Browser Library, SeleniumLibrary or something else?

The easiest wat to approach this is to use Suite directories, put all your robot files in the Suite directory, then use a Suite initialization file (__init__.robot) to apply Suite setup and teardown, a Suite setup to open the browser and a Suite teardown to close it.

Hopefully that’s what your after,

Dave.

Thanks Dave for your reply, I am using SeleniumLibrary.
I will try this way so .

1 Like