コード化された UI テストは初めてです。null 値を取得し続けているため、テキスト ボックスの値を取得する方法を教えてください。テキストボックスの値を検証するメソッドにアサーションを追加しましたが、実際のデータは常に null であるため、失敗し続けます。以下は私のサンプルコードです。助けてくれてありがとう。
CodeUItest クラスのテスト メソッドは次のとおりです。
[TestMethod]
public void TBParameterTest()
{
this.UIMap.ValidateTBValue();
}
public void ValidateTBValue()
{
#region Variable Declarations
WinEdit uIItemEdit = this.UIContigoWindow.UIItemCell.UIItemEdit;
#endregion
// Verify that the 'Text' property of text box equals '1200'
Assert.AreEqual(this.ValidateTBValueExpectedValues.UIItemEditText, uIItemEdit.Text, "Not equal to previous value when parameter is not yet modified");
}
Web ページの値が 1200 であっても、uIItemEdit.Text は常に null です。
ありがとう!