I'm trying to use VBA to enter a value into an input box but having no luck! below is my code and the HTML from the website
VBA once the website is open:
IE.GetElementByID("searchForm").Value = "test"
HTML inspecting element:
<form class="well well-search hidden-print" id="searchForm"
<div class="row">
<div class="col-sm-4">
<input name="search" class="form-control" type="text" size="20" maxlength="20" value="">
</div>
<div class="col-sm-2 col-sm-offset-6 right">
<label> </label>
<button class="btn btn-success btn-xs showLoadingText form-control" type="submit" data-loading-text="searching...">Search</button>
</div>
</div>
</form>