dauntless1 Posted November 28, 2011 Posted November 28, 2011 Hello, All.I am trying to select the option below from a website with a table written in Java script:<td valign="middle" class="linkOff" align="right" id="2" onmouseover="this.className='greyrowbold';showMe('2');mySpacer('2', true);self.status='Click Here'; return true;" onmouseout="this.className='linkOff';showMe('0');mySpacer('2', false);self.status=' '; return true;" onclick="window.location.href='app.do?appId=2'" style="cursor : hand; padding-right: 2px;" height="30px">Clearing & Settlement</td> I have tried the following, but have not been successful in navigating to the the next page following the selection. Here is what I have tried:$oSubmit = _IEGetObjByName ($oIE, "2")_IEAction ($oSubmit, "click")_IELoadWait ($oIE);$hwnd = _IEPropertyGet($oIE, "hwnd");$oSubmit = _IEGetObjByName ($oIE, "Clearing");_IEAction ($oSubmit, "focus");ControlSend($hwnd, "", "[CLASS:Internet Explorer_Server; INSTANCE:1]", "{Enter}"); Wait for Alert window, then click on OK;WinWait("Windows Internet Explorer", "ExampleFormSubmitted");ControlClick("Windows Internet Explorer", "ExampleFormSubmitted", "[CLASS:Button; TEXT:OK; Instance:1;]");_IELoadWait ($oIE)Thank you in advance for any assistance.
DaleHohm Posted November 30, 2011 Posted November 30, 2011 try latest beta if using IE9 and also try: $oSubmit = _IEGetObjById ($oIE, "2") $oSubmit.fireEvent("onmouseover") _IEAction ($oSubmit, "click") _IELoadWait ($oIE) Dale Free Internet Tools: DebugBar, AutoIt IE Builder, HTTP UDF, MODIV2, IE Developer Toolbar, IEDocMon, Fiddler, HTML Validator, WGet, curl MSDN docs: InternetExplorer Object, Document Object, Overviews and Tutorials, DHTML Objects, DHTML Events, WinHttpRequest, XmlHttpRequest, Cross-Frame Scripting, Office object model Automate input type=file (Related) Alternative to _IECreateEmbedded? better: _IECreatePseudoEmbedded Better Better? IE.au3 issues with Vista - Workarounds SciTe Debug mode - it's magic: #AutoIt3Wrapper_run_debug_mode=Y Doesn't work needs to be ripped out of the troubleshooting lexicon. It means that what you tried did not produce the results you expected. It begs the questions 1) what did you try?, 2) what did you expect? and 3) what happened instead? Reproducer: a small (the smallest?) piece of stand-alone code that demonstrates your trouble
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