prasad31 Posted June 20, 2012 Posted June 20, 2012 I need support for the above problem After performing _IEAction($objbutton,"click"), pop window was displayed with OK button. But scripts is not coming out of the _IEAction command. Can any one help me
Moderators JLogan3o13 Posted June 20, 2012 Moderators Posted June 20, 2012 Hi, prasad31. It is a bit difficult to assist without seeing the code. Can you please post the code you have, or a small reproducer? "Profanity is the last vestige of the feeble mind. For the man who cannot express himself forcibly through intellect must do so through shock and awe" - Spencer W. Kimball How to get your question answered on this forum!
prasad31 Posted June 21, 2012 Author Posted June 21, 2012 $oIE=_IECreate($IpAddress) ;object for IE $oMainMenu = _IEGetObjById($oIE, $vMainMenu) ;main ribbon in the page _IEAction($oMainMenu, "click") $oSubmenu = _IEGetObjById($oIE,$vSubmenu ) ; sub ribbon for the main ribbon _IEAction($oSubmenu, "click") sleep(5000) $oFrame = _IEFrameGetObjByName ($oIE, $vFramename) ; frame object for the sub ribbon $ApplyBtn=_IEGetObjById($oFrame,$apply) ;apply button available in the frame _IEAction($ApplyBtn, "click") ;able to perform click operation using this statement but after performing the above statement one new pop dialog box displayed with OK button, Script execution is not going forward
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