Jump to content

Dale, pls help: iframe and form in IE


neo007
 Share

Recommended Posts

Hi,

Could you please help me with this:

In a webpage, I wanna click a link "3" (which is "java script:{gopage(3);}") and IE will go to another page. I tried several codes and Nevin helped me a lot. Now I learned more and I think I should do it another way:

There's a input textbox(named "pagenum") in the page. On the right there's a button "GO". If I input "3" and press GO, the same result happens as clicking link.

I find out:

"GO" button's code is:

A href=java script:form1.submit()

IMG src=http://....../account_11.gif

There's some iframes in the page. All objects I'm dealing with is in "ifr_left";

Every iframe has a form named "form1".

So, I wrote this code:

#include <IE.au3>
WinActivate("xxxx - Microsoft Internet Explorer")
$oIE = _IEAttach("xxxx")
$oFrame = _IEFrameGetObjByName ($oIE, "ifr_left")
.....here, how to connect this $oFrame to $oForm ?
$oForm = _IEFormGetObjByName ($oIE, "form1")
$oText = _IEFormElementGetObjByName ($oForm, "pagenum")
_IEFormElementSetValue ($oText, "3")

My question is "how to connect this $oFrame to $oForm ?"

Thanks.

Edited by neo007
Link to comment
Share on other sites

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

Link to comment
Share on other sites

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
 Share

  • Recently Browsing   0 members

    • No registered users viewing this page.
×
×
  • Create New...