質問

Are there any third party tools compatible with robot framework to run the tests in three different browsers.
That means first it should run whole suite using IE
After that it should run whole suite using FF
Then using Chrome and this should be done automatically.

Please suggest me.

正しい解決策はありません

他のヒント

If you use Selenium2Library, and define the browser in a variable, you can run the same tests against multiple browsers by changing the variable on the command line:

$ pybot -v BROWSER=chrome my_test_suite.txt
$ pybot -v BROWSER=ff my_test_suite.txt
...

https://robotframework.org/#libraries has a nice list of good libraries for RF and among them there is a Selenium2Library.

ライセンス: CC-BY-SA帰属
所属していません StackOverflow
scroll top