I have recorded some interactions with windmill and when I hit save I get the following (python) script:
# Generated by the windmill services transformer
from windmill.authoring import WindmillTestClient
def test_recordingSuite0():
client = WindmillTestClient(__name__)
client.type(text=u'Hello World', id=u'lst-ib')
client.click(link=u'Hello world program - Wikipedia, the free encyclopedia')
client.waits.forPageLoad(timeout=u'20000')
Now I don't have any clue how to run this. At the end I need a script with which I can run 100 tests at the same time.
However, if I get one test running and it is easy to parallelize it with python. But right now I can't run this simple test.
I hope someone can help me :).