Servant Posted January 16, 2014 Share Posted January 16, 2014 (edited) Could you please show me a script that will set whatever value at the "Description:" field (ONLY!!) of such this kind of a web form: www.fiercewireless.com/jobs/post/ I tried to find a way but I am empty right now.. Edited January 16, 2014 by Servant http://developingsites.blogspot.com Link to comment Share on other sites More sharing options...
Solution michaelslamet Posted January 16, 2014 Solution Share Posted January 16, 2014 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 Servant 1 Link to comment Share on other sites More sharing options...
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