Hey,
i would like to set a value into an INPUT field.
Checked the _IEFormElementSetValue function but that does require _IEFormGetObjByName and this is where the problem comes in. The input field I want to write to is not a part of a form tag. It is part of a table.
<input type="text" class="w2" id="nabidka_vozidel_formular_tach_od" name="nabidka_vozidel_formular_tach_od" onchange="GLOBAL.pocetInzerceNZ("nabidka_vozidel_formular","tach_od","");" autocomplete="off">
I tried this but that didn't work:
$oDownloadSamples = _IEGetObjById($oIE, "nabidka_vozidel_formular_tach_od")
_IEFormElementSetValue($oDownloadSamples, "123")
If you want to try the site I'm working with is https://www.tipcars.cz/. There is a menu on the top left hand side and if you click the "vyhledat" button the input fields will show up.
Thanks