To run multiple test scripts with Selenium IDE Runner, you should list the test scripts as separate command-line arguments instead of specifying them in a configuration file.
Here's how you can run multiple test scripts using Selenium IDE Runner from the command line:
selenium-side-runner test1.side test2.side test3.side
In this command, replace `test1.side`, `test2.side`, and `test3.side` with the actual filenames of your Selenium IDE test scripts. Simply list the test scripts one after the other on the command line.
Each test script will be executed sequentially in the order you specify in the command.
If you encounter any issues with the Selenium IDE Runner command, please ensure that you have the runner installed and that your test script files are in the correct directory and have the correct file extensions (usually `.side`). Also, make sure you have a compatible browser and Selenium WebDriver set up.
No comments:
Post a Comment