unity06 0 Posted October 23, 2013 Hi guys, I have a rather simple issue (I am still a relatively new user so I am learning). When automating IE... When you hover over a link with a mouse OR tab around the page to various links/buttons etc. At the bottom there is a panel which shows what link you are hovering over or tabbed onto. How to get the text of that link over which you are hovering over? Please see the attached screenshot if my explanation is confusing. Share this post Link to post Share on other sites
gruntydatsun 12 Posted October 23, 2013 hope this helps #include <IE.au3> Local $oIE = _IECreate("www.google.com") _IELoadWait($oIE) for $x = 0 to 15 ConsoleWrite(@CRLF & "Status Bar Shows: " & _IEPropertyGet($oIE, "statustext")) Send("{TAB}") Sleep(1000) Next Share this post Link to post Share on other sites