beausof Posted August 17, 2015 Posted August 17, 2015 Hello, Just as the title states. How do I replace a large amount of text within a web page with another large amount of text. Pretty much just a copy/paste. I have read and understand how to replace certain strings within a webpage but I need to do this on a larger scale. Any help is greatly appreciated. thanks
mikell Posted August 17, 2015 Posted August 17, 2015 Using _StringBetween() or StringRegExpReplace() you can select the part of text to replace, whatever its size
beausof Posted August 17, 2015 Author Posted August 17, 2015 Thanks Mikell,this seemed to work for me:#include <IE.au3>$v="This is a test variable"$o_IE = _IECreate()$rc=_IENavigate($o_IE, "Web Page")$o_field = _IEGetObjById($o_IE, "c2") ; this is the name of the textbox_IEFormElementSetValue($o_field,$v) ; paste the variable$o_submit= _IEGetObjById($o_IE,"c4") ; this is the name of the submit button, In my case there is a submit button_IEAction($o_submit,"click") ; click the button_IELoadWait($o_IE)_IEQuit($o_IE) <--- closes window but i needed it open so i commented this out Thanks again
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