I'm unable to give values to a text field as below (it is leaving the field blank):
browser.find_element_by_name("userId").clear()
browser.find_element_by_name("userId").send_keys('myname')
This is the html part of the text field im trying to give value:
<td align="left"> <input name="userCB" type="checkbox" onclick="disable_enable_user(checked)"/> User ID<br /></td>
<td align="left">
<input name="userId" type="text" size="15" value="" disabled="disabled">
Is it because the field is disabled, if so , how can I enable it?