i have a device that can be managed using webpage interface.
the device address can be :
http://10.18.25.25/restart
with a submit button in the webpage:
<form action="/restart/restart" method="POST" name="restartForm">
<input type="submit" value="OK">
</form>
i am trying to use python module requests to automate clicking on the button on that webpage.
from urllib3 import requests
r = requests.get('http://10.18.25.25/restart', auth=('username', 'password'))
any ideas??