I'm struggling with an automation task where the HTML site has an input field, but when I search it out in DOM Explorer it looks like this:
<input name="txtFirewall" id="txtFirewall" type="text">
As you can see, there is no value attribute. Once you give in smthing manually to the search field it changes like this:
<input name="txtFirewall" id="txtFirewall" type="text">value="Something">
How can I add the Value attribute and assign value to it with python? Can it be even done with Selenium?