2016-06-15 65 views
1

我正在研究jmeter,我有一個問題。如何測試jmeter的響應並傳遞參數?

Login

我的第一個問題:萬一:(github上)

input autocapitalize="off" autocorrect="off" autofocus="autofocus" class="form-control input-block" id="login_field" name="login" tabindex="1" type="text" 

input class="form-control form-control input-block" id="password" name="password" tabindex="2" type="password" 

如果該網站不具備場 「名」,我怎麼能傳遞參數去網站?我們可以使用css或xpath將param傳遞給網站嗎?

enter image description here

我的第二個問題:

如何測試從網站的響應值? (從畫面的響應數據不正確,還是登錄頁面上)

感謝您的閱讀,並支持我來糾正這個...

回答

1
  1. HTML Forms article

    的名稱屬性

    要正確提交,每個輸入字段必須都有一個名稱屬性。

    實際上,您不必擔心HTML標記,JMeter會在協議級別上運行並提供記錄和重放功能。有關配置說明,請參見Apache JMeter Proxy Step by Step

  2. 您可以使用Response Assertion添加檢查響應是否仍然是登錄頁面。例如,如果用戶登錄 - 他不應該再看到用戶名輸入。請參閱How to Use JMeter Assertions in Three Easy Steps文章以瞭解有條件地失敗的JMeter採樣器的更多信息。

+0

嗨德米特里T,我想爲Jmeter編寫java代碼。我想爲每個線程使用不同的參數發送更多的動作。感謝您的回答... –

+0

嗨@Dmitri T,在這種情況下,你能給我一些想法嗎? –

相關問題