</form></table>
<br>
<table><tr><th>Login With Password:
<tr><td class=w><form method=POST action="/do_login">
User Name: <input name="name" type="text">
Password: <input name="password" type="password">
<input type="submit" value="Login">
<input name="redirect" type="hidden" value="">
</form></table>
I would like to also post the hidden field doing log in, and selenium only allows me to use the send_key
function with only field that are enabled and displayed.
Without posting the input hidden value
doing log in, it won't log in, I was able to do it with requests
module with the data
parameter in the request.post()
function, but Id like to it with selenium.