キュウリが初めてです。キュウリによるUIオートメーションのユースケースは以下の通りです。キュウリ+ java:ステップ1で返されたパラメーターをステップ2に渡す
以下の例を考慮してください。 TestNGの中
、
@Test {"formname"}
public void createAndSearchForm(String formName)
{
//In below step, it create form by name (formName-timestamp) and return the formname. e.g. it create form and return "formname-06042016184426"
// In this method we create form name by appending time stamp to formname passed to method. Since application didn't accept same name we need to append timestamp
// to formname.
String newFormName=createForm(formName);
// In below method we pass above newFormName and verify whether form is created or not by searching form name.
asserTrue(searchCreatedForm(newFormName));
}
は、今、私たちはキュウリに移動していると私たちはキュウリに上記の例を達成する必要があります。
機能:フォーム。
シナリオ:名前「フォーム名」でフォームを作成し、与えられたアプリケーション
にログイン
次に「フォーム名」私たちが直面している
号検索 - > 、我々ドンSTEP1で返さなっているフォーム名をそれをstep2に渡す方法はわかりません。 シナリオ内では、このフォーム名をさまざまなクラスに実装された異なるステップ定義に渡す必要があります。
ネットで検索しようとしましたが、私たちのニーズに固有のものは見つかりませんでした。
誰かが私たちにいくつかの示唆/提案を与えることができれば、大きな助けになるでしょう。
単純な答えは、クラス変数です。 – MikeJRamsey56