We are testing a ASPNET MVC Application by using Selenium.
In the Webpage they are using a Jquery Date control Textbox datepicker/#icon-trigger and that text box was in Disable mode
I am trying to send the values from selenium to webpage by using following code.
Driver.findElement(By.id("txtDOB")).sendKeys("10/10/1986");
But it was not working. it doesn't show any error.
and Now My question is how to send values to Disabled text box?
Can any one help me on this...?