I have a address input text field on website which is basically auto populated by java script. This is not a drop down field through which ou can select some value, neither you can input your own text field.
I am performing some tests using selenium but I am not able to input this field with some text value. The below option is not working, and test is failing at this point. I basically want to input 328 West 91st Street address in the field but selenium is failing here.
input_text(driver, locator, '328 West 91st Street')
Reason why it is failing
This doesn't seem like a regular input text field since a javascript object is attached to it for auto populating. Selenium is not able to recognize this. Could you tell me any work around? My locator is correct


ajaxrequest.