I would like to fill in and submit a form on a web page using python.
This form:
<form method="POST" id="login" action="site/enter.php" >
<input type="text" placeholder="Login" name="login" class="login" tabindex="1">
<input type="password" placeholder="Password" name="psw" class="password" tabindex="2">
<input type="submit" class="btn_auth" value="" title="Enter" tabindex="3">
</form>
But can't do it. I place login and pass, but can't emulate submit button.