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.
LondheGS
(Gaurav Londhe)
January 19, 2024, 2:27pm
3
@shashwats6539
can use chrome debugger to achieve the same
open portal in chrome
press function fn key + F12, this will open debugger
then use top left corner arrow icon to hover over your text box control, and click on the control when it highlights
related css you can see in debugger and on right hand side in debugger will see a link for css, click on link
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