Mouse Over

Hi Team,

How to extract the values that is coming when we keep the mouse over a link.
Ex: I have a link Say A123 if i keep the mouse over it it will display two numbers
ID : 111
Name : abc
How to extract these values?

Thanks
Robotics

@Robotics

Can you share a screenshot?

Also you can try with getting a selector of that element and check whether that ID and Name is in Inner Text or some other attributes

Hope this helps

Thanks

Due to security reasons i cant share. It is like
A123(its a link) if you mouse over it it will populated a small box within that we have the ID and Name, need to extract those details.

@Robotics

Place a Click activity and indicate that element, open edit selector and check in UiExplorer and check the attributes which is having ID, Name

Then you can use Get Attributes activity to extract those attributes from the element

Hope this helps you

Thanks