タイトルが示すように、verifyElement を使用して ID で検索すると、テストはクラッシュしません。しかし、データを (具体的には textBox に) 入力しようとすると、テストは失敗します。
テキストボックス:
<span><input type="text" name="searchString" maxlength="100" value="" id="searchString" class="commonTextBox"></span>
これは失敗しません:
automation.verifyElement(AutomationConstants.FIND_ID, "searchString", false);
これは失敗します:
automation.enterInputBox(AutomationConstants.FIND_XPATH, "//input[@id='searchString'and @class='commonTextBox']", "Alex", false);
XPATH の代わりに FIND_ID も使用しましたが、これも失敗します。
私はアイデアがありません。