Below is the element details of input field
<input name="aadharNumber" placeholder="Enter Aadhaar No." error="[object Object]" maxlength="12" type="text" class="form-control" value="">
I have written following code
bot.FindElementByClass("form-control").SendKeys ("242730110592")
I have also tried using
bot.FindElementByname("aadharNumber").SendKeys ("242730110592")
Please help me in entering data in input field
This code works for me. Note the SendKeys method can use parentheses or without.