Hello, I am trying to change the value of a certain element on a webpage.
HTML code I am trying to interact with....
Code:
<input name="actuals_hours" title="This title is unique and always stay the same" class="formFieldNoWidth" id="d71054e1235" type="text" size="4" maxLength="2147483647" alt="This title is unique and always stay the same"/>
I am able to change the value by identifying the ID…
oIE.Document.all.Item("d71054e1235").Value = "8"
However, every time the page reloads, this ID is changed… Leaving me in a non working spot. The input name is not unique either.
The things that are unique and do not change is the title and the alt. I am wondering how or IF I can isolate an item on the page by these elements..... Any help is appreciated.
Thank you in advance.