18 January 2026:
Sahi Pro is an enterprise grade test automation platform which can automate web, mobile, API, windows and java based applications and SAP.
This forum is now archived and is in read-only mode. Please continue discussions on our improved new Sahi Pro Community forum.
Sahi Pro is an enterprise grade test automation platform which can automate web, mobile, API, windows and java based applications and SAP.
Change testrunner.bat to pick Start_url from external file
Hi,
I want to modify my Testrunner.bat to pick the start_url from one of my external file.
This external file will store my Original url to be started with testrunner.bat.
I do not want to explicitly give the Start_url in the testrunner.bat command.
Is this possible? if Yes, how.
- Sachin
I want to modify my Testrunner.bat to pick the start_url from one of my external file.
This external file will store my Original url to be started with testrunner.bat.
I do not want to explicitly give the Start_url in the testrunner.bat command.
Is this possible? if Yes, how.
- Sachin
This discussion has been closed.
Comments
You can do something like this:
FOR /F " delims= " %i in (sample.txt) do testrunner.bat demo/demo.suite %i ie
Regards
Sumitra