I have looked online and in Stack Overflow but cannot find a solution to my problem.
I need to execute multiple files written in Python using Selenium. I'd like to do this asynchronously or in parallel. Please note that my files are not necessarily tests.
Ideally I'd like to accomplish the following:
- Execute my files that are stored in a single directory
- This can be done asynchronously or in parallel
- I cannot use Sauce Labs or similar web tools
I have written files before using Robot Framework and have had success executing multiple files using Pabot but can't seem to find a similar solution for executing multiple files with a Python module. Is Selenium Grid a good approach for something like this?