MattiS Posted October 13, 2014 Share Posted October 13, 2014 Hello, We have requirment to capture the bubble message using AutoIt in web driver. Steps to get the bubble message. 1. Right click on system tray icon. 2. Mouse hover to "Time limits". 3. Then click on "check remaining time" 4. Once we click on "check remaining time" get a tray bubble(Refer attached screen shot i.e TrayIcon_2.png), we have capture helighted popup bubble text. Below is the autoIt script for clicking "check remaining time". If $iSystray_ButtonNumber = -1 Then MsgBox(16, "Error", "Icon not found in system tray") Exit Else Sleep(500) _GUICtrlToolbar_ClickButton($hSysTray_Handle, $iSystray_ButtonNumber, "right") Send("{UP}{UP}{UP}") ;O/P - Blank If GetPopUpSelText() == "Time limits" Then Send("{ENTER}") Sleep(1000) Send("{ENTER}") Exit Else ConsoleWrite("TC_1002 No Log-In Option-FAIL "&@CRLF) EndIf EndIf I want capture the popup bubble text. Please help to do this.. Any suggestions/help would be appreciated... Thanks&Regards, Matti Attached Thumbnails Link to comment Share on other sites More sharing options...
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now