Jump to content

Recommended Posts

Posted

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

Posted

$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

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 account

Sign in

Already have an account? Sign in here.

Sign In Now
×
×
  • Create New...