Find element and get attribute

@Hara_Gopal

  • Find element activity is useful when you want to identify a an UiElement from a screen.
    Lets say, I have to find a text box. I can use that activity. The output will be of UiElement type. the output can be used instead of selectors for activities like Type into or click,

  • Selectors have attributes. When you need to get the value of an attribute , you will use Get attribute. You will have to pass the Attribute name to retrieve the value.
    For example, I have radio button. I need to know if it is selected or not. Then, I will spy that element and pass the attribute as “checked”, I will get the value of the element.

5 Likes