Jump to content

How the Heck can I set a value of an inputbox?!


Vaeb
 Share

Recommended Posts

Hello

I've got this script:

#include<IE.au3>

$oIE = _IECreate ("http://wis/en/wwp/Zen%20sor%20ed/xD%20^^%20:P.aspx")
sleep (2000)
$oForm = _IEFormGetCollection ($oIE, 0)
$oQuery = _IEFormElementGetCollection ($oForm, 1)
_IEFormElementSetValue ($oQuery, "wih")
_IEFormSubmit ($oForm)

;<td align="Left" valign="Middle"><img src="../../../Program Files/Common Files/Microsoft Shared/Web Server Extensions/60/Template/1031/STS/doctemp/smartpgs/_layouts/images/magnify.gif" alt="" border="0" /></td><td align="Center" valign="Middle"><input name="FullPage:g_fea2d5bf_eb2f_462c_b73c_7ba7c0cecd05:_ctl0:ctlSearch:txtSearchString" type="text" maxlength="25" id="FullPage_g_fea2d5bf_eb2f_462c_b73c_7ba7c0cecd05__ctl0_ctlSearch_txtSearchString" class="ms-searchbox" /></td><td align="Right" valign="Middle"><input type="image" name="FullPage:g_fea2d5bf_eb2f_462c_b73c_7ba7c0cecd05:_ctl0:ctlSearch:btnSearch" id="FullPage_g_fea2d5bf_eb2f_462c_b73c_7ba7c0cecd05__ctl0_ctlSearch_btnSearch" src="../../../Program Files/Common Files/Microsoft Shared/Web Server Extensions/60/Template/1031/STS/doctemp/smartpgs/_layouts/images/GOSEARCH.GIF" alt="" border="0" /></td>

The comment is the line of the source code.

i want the script to set the value to "wih".

after that it has to push the button "GOSEARCH.gif".

Is that possible with IE7?

Greets

Vaeb

Link to comment
Share on other sites

Hello

I've got this script:

#include<IE.au3>

$oIE = _IECreate ("http://wis/en/wwp/Zen%20sor%20ed/xD%20^^%20:P.aspx")
sleep (2000)
$oForm = _IEFormGetCollection ($oIE, 0)
$oQuery = _IEFormElementGetCollection ($oForm, 1)
_IEFormElementSetValue ($oQuery, "wih")
_IEFormSubmit ($oForm)

;<td align="Left" valign="Middle"><img src="../../../Program Files/Common Files/Microsoft Shared/Web Server Extensions/60/Template/1031/STS/doctemp/smartpgs/_layouts/images/magnify.gif" alt="" border="0" /></td><td align="Center" valign="Middle"><input name="FullPage:g_fea2d5bf_eb2f_462c_b73c_7ba7c0cecd05:_ctl0:ctlSearch:txtSearchString" type="text" maxlength="25" id="FullPage_g_fea2d5bf_eb2f_462c_b73c_7ba7c0cecd05__ctl0_ctlSearch_txtSearchString" class="ms-searchbox" /></td><td align="Right" valign="Middle"><input type="image" name="FullPage:g_fea2d5bf_eb2f_462c_b73c_7ba7c0cecd05:_ctl0:ctlSearch:btnSearch" id="FullPage_g_fea2d5bf_eb2f_462c_b73c_7ba7c0cecd05__ctl0_ctlSearch_btnSearch" src="../../../Program Files/Common Files/Microsoft Shared/Web Server Extensions/60/Template/1031/STS/doctemp/smartpgs/_layouts/images/GOSEARCH.GIF" alt="" border="0" /></td>
</span>

The comment is the line of the source code.

i want the script to set the value to "wih".

after that it has to push the button "GOSEARCH.gif".

Is that possible with IE7?

Greets

Vaeb

Ok... Lets see. If we could have the site, that would be kind of helpful. meh.

Does this example work for you?

#include <IE.au3>
$oIE = _IECreate ("http://www.google.com")
$oForm = _IEFormGetCollection ($oIE, 0)
$oQuery = _IEFormElementGetCollection ($oForm, 1)
_IEFormElementSetValue ($oQuery, "AutoIt IE.au3")
_IEFormSubmit ($oForm)

Also have a look at this example:

Might help you?

#include <IE.au3>
$oIE = _IECreate ("http://www.google.com")
$oForm = _IEFormGetObjByName ($oIE, "f")
$oQuery = _IEFormElementGetObjByName ($oForm, "q")
_IEFormElementSetValue ($oQuery, "AutoIt IE.au3")
_IEFormSubmit ($oForm)
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...