Uiautomation question

Hi,
I have a table view in a web page. How do I verify that there is no Delete button for each row? If I capture fuzzy selector to find all Deletes, the element is not being found. Bot is ablue to find for strict selector only. Then I will be capturing only one Delete.

Thank you,

@A_Learner

Your fuzzy selector might be not good…even that needs modification…

use idx property idx=‘2’ will highlight second delete button if present

mostly selector looks liek this

<webctrl tag='input' type='button' innertext='Delete' idx='2' />

If its a table you can include tr tag also and use tablerow property to increment and get each button

cheers

1 Like

This topic was automatically closed 3 days after the last reply. New replies are no longer allowed.