I am using robot framework-python-eclipse package for my functional test automation. I have put all test cases in one folder and running those by putting below command on command line and its running fine and giving the result.
robot --timestampoutputs --log TestLog.html --report TestReport.html --outputdir D:\TestProject_Regression_Screenshots\TestAutomationResult -T TesttTestSuite_5Oct
But Few things I am stuck with.
If I use robot test suite in eclipse then I need to put the code of all the test script in one file but I have 50 test scripts and I want to keep and run them independently and not to add in one file then how to create a test suite ? I am using robotframework-metrics to get the result on dashboard. As I am not using test suite from eclipse hence my dashboard of robotframework-metrics is showing test case name as test suite
How to run single test case for multiple times using different parameters in single run. e.g. If I want to test login functionality with 5 different credentials then how to parameterized it to check with them one by one
As I am running it using eclipse then the test cases are set in alphabetical order. How to set the order as per requirement without renaming?
4.I have 50 test scripts in 50 different .robot files then is there any way to call (not paste) them in one .robot file which will be a test suite and can run?
Below is my project structure in eclipse. There is single test script in every .robot file and I have put it in a folder named TestSuite11Oct. I am running this as folder as below.
robot --timestampoutputs --log TestLog.html --report TestReport.html --outputdir D:\TestProject_Regression_Screenshots\TestAutomationResult -T TestSuite11Oct

Now if I create robot test suite in eclipse by going to the path New>Other>Robot Framework>Robot Test Suite then it will create one new .robot file and that would be a test suite then how these two test scripts which shown in the image above should I call in that .robot test suite file to run. I dont want to paste the code from these two files in that test suite .robot file.