Hey all I am trying to select a drop down box in a webpage and make a selection. Do this easy in the past but this page is making it hard .Cut down my code significantly for this post.
Seems to be only one form on the page and only has an ID but no name
#ctl01<form method="post" action="./productSearch.aspx" id="ctl01">
Can someone tell me what I am doing wrong?
current error is :
--> IE.au3 V2.4-0 Warning from function _IEFormElementGetObjByName, $_IEStatus_NoMatch
#include <IE.au3>
Local $oIE = _IECreate("http://www.dmcretail.com/RetailSelect.aspx")
Local $oSubmit = _IEGetObjByName($oIE, "btnCase")
_IEAction($oSubmit, "click")
;~ loads to http://www.dmcretail.com/productSearch.aspx
_IELoadWait($oIE)
$oForm = _IEFormGetCollection($oIE, 0)
$oSelect = _IEFormElementGetObjByName($oForm, 'ctl00$ContentPlaceHolder1$RadPanelBar1$i0$i8$ProductLine')