Jump to content

Is there a way to insert a value at the "Description" field of such this form?


Servant
 Share

Go to solution Solved by michaelslamet,

Recommended Posts

  • Solution

Here you are:

#include <ie.au3>

$oIE = _IECreate("http://www.fiercewireless.com/jobs/post/")
_IELoadWait($oIE, 1000)
$tags = $oIE.document.GetElementsByTagName("IFRAME")
$x = 0
For $tag In $tags
    If $x = 0 Then
        $tag.contentWindow.document.body.innerHTML = "got you!"
        ExitLoop
    EndIf
Next
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

×
×
  • Create New...