testObject.WaitForProperty(propertyName, expectedValue, [timeout])
testObject.WaitForProperty(propertyName, expectedValue, [timeout])
変数 | 説明 |
---|---|
propertyName | プロパティの名前。 String。 |
expectedValue | 待機するプロパティの値。 Object。 |
timeout | 省略可能: 待機する最大時間 (ミリ秒)。 Integer。 |
C#
button.WaitForProperty("Enabled", true, 10000);
dialog.WaitForProperty("caption", "Operation Complete");
メモ: コントロールの利用可能なプロパティのリスト全体を取得するには、GetPropertyList メソッドを使用します。
VB
button.WaitForProperty("Enabled", true, 10000)
dialog.WaitForProperty("caption", "Operation Complete")
メモ: コントロールの利用可能なプロパティのリスト全体を取得するには、GetPropertyList メソッドを使用します。