2011-12-10 104 views
2

我記錄了與風車一些互動,當我點擊保存,我得到以下(Python)的腳本:如何運行風車測試腳本

# 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') 

現在我沒有任何線索如何運行此。最後,我需要一個腳本,可以同時運行100個測試。

但是,如果我運行一個測試,並且很容易將其與python並行化。但現在我無法運行這個簡單的測試。

我希望有人能幫助我:)。

回答

1

您只需粘貼從風車輸出腳本到一個名爲* .py文件運行,然後你執行下面的命令

windmill chrome test=./[directory containing your *.py files] http://www.google.com 

您也可以直接指定測試文件的名稱。

如果您想要並行運行腳本,那麼您可以在單獨的終端中執行這些命令。這到目前爲止只適用於Chrome。如果打開了多個實例,Firefox會抱怨。

相關問題