Interrogation of a hover control

Hi Team ,

I need to interrogate a control which display over mouse hover , and capture the contents of mouse hover details over a text box .

Is there a way to do it .

Please note :- mouse hover details will not appear over mouse click , it only pop up details on mouse hover

@shashwats6539 If it is an actual control, then you might be able to locate it on the Windows Control tab in interrogation mode. You can add it to your adapter hierarchy from there. If it is not, then I would suggest looking for another control (possibly a hidden one) that has that value.

@shashwats6539

can use chrome debugger to achieve the same

  1. open portal in chrome

  2. press function fn key + F12, this will open debugger

  3. then use top left corner arrow icon to hover over your text box control, and click on the control when it highlights

  4. related css you can see in debugger and on right hand side in debugger will see a link for css, click on link

  5. it will open associated css then can look in that css for hover associated keyword , usually hover over css looks like below

BUTTON.mybtn :hover {
background-color: #ff00ff;
}

below is debugger example