I would like to use...
Dim IE As Object
Set IE = CreateObject("InternetExplorer.Application")
With appropriate code to check a checkbox on a webpage
The HTML Code on the rendered page is...
<form class="form-inline" style="float:right">
<div class="checkbox">
<label style="padding-top: 1px">
<input data-bind="checked: orderBook.showAll" style="top:2px"
type="checkbox" /> Show All
</label>
</div>
</form>
I can't use getElementsByID()
as I don't think it has one.
Any suggestions?