I've finished grabbing all the Obj in IE correctly, but I need a way to copy contents in an excel to specific text box in an IE Form.
This is the script I have so far for IE:
#include <IE.au3> $sURL = "<a href='http://www.example.com' class='bbc_url' title='External link' rel='nofollow external'>http://www.example.com"</a> Local $oIE = _IECreate ($sURL) Local $oForm = _IEFormGetObjByName($oIE, "product_form") Local $oSelectAttrVal = _IEGetObjById($oForm, "id_productattribute_set-0-value") _IEFormElementSetValue($oSelectAttrVal, "") ;; Text Box Identifier
I am able to just enter a string and have that text box filled, but I would like to basically do this following:
Create 10 x (loop this 10x) IE Window and enter into that Text Box (each instance different text) from Excel's Cell A1 to A10 into the 10 different IE Forms. Like A1 will be copied into the first IE Form, A10 will be copied into the 10th IE Form.
Or alternatively, if it's easier to code/script, from a plain text file Line 1 to Line 10.
Thanks in advance.





