I have a simple html form, like this one
<!DOCTYPE html>
<html>
<body>
<form action="/Login/Authenticate" id="Loginform" method="post">
<label for="fname">User name:</label><br>
<input class="Txt_bx password" data-val="true" data-val-required="Enter Password" id="txtPassword" name="Log.password" type="text"><br>
<label for="lname">Password :</label><br>
<input class="Txt_bx urserName" data-val="true" data-val-required="Enter Username" id="txtusername" name="Log.username" type="password" value="">
</form>
</body>
</html>
I want to insert some text into the input class Txt_bx password and Txt_bx username without using selenium as it is too slow. Is there any other way I can do this?
Any help would be Appreciated!