daillest319
Programmer
Hi,
I'm writing a vbs script to automate through a webpage.
I was hoping someone can help me with selecting from a drop box list from IE webpage.I'm able to change the value but its not submitting it or updating the page with the year i selected.
the source code on the web page is the following
-----------------------------------------------------
This is the code im using to change the value and submit it change the value but it does not submit/update the page with the year i slected.....
I'm writing a vbs script to automate through a webpage.
I was hoping someone can help me with selecting from a drop box list from IE webpage.I'm able to change the value but its not submitting it or updating the page with the year i selected.
the source code on the web page is the following
Code:
function doChange()
{
var wsub1,wsub2,wDate;
wsub1 = document.JOBLISTFORM.month.selectedIndex;
wsub2 = document.JOBLISTFORM.year.selectedIndex;
wDate = document.JOBLISTFORM.year[wsub2].value +
<select id="YEAR" name=year size="1" onChange="doChange()">
<option value="2001" >2001
<option value="2002" >2002
<option value="2003" >2003
{
var wsub1,wsub2,wDate;
wsub1 = document.JOBLISTFORM.month.selectedIndex;
wsub2 = document.JOBLISTFORM.year.selectedIndex;
wDate = document.JOBLISTFORM.year[wsub2].value + document.JOBLISTFORM.month[wsub1].value + "01";
CL(wDate);
}
-----------------------------------------------------
This is the code im using to change the value and submit it change the value but it does not submit/update the page with the year i slected.....
Code:
Dim oIE
Set oIE = WScript.CreateObject("InternetExplorer.Application")
oIE.Document.Forms(0).Item("YEAR").Value = 2003
oIE.Document.Forms(0).Submit