Selenium WebDriver Java Maven input date with sendkeys isn't working -


i'm trying input date date field has calendar plugin every reservation site has. here's code:

webelement checkin = driver.findelement(by.id("check-in")); checkin.sendkeys("08/31/15");        webelement checkout = driver.findelement(by.id("check-out")); checkout.sendkeys("09/06/15"); 

this isn't inputting date when run script. date format correct. doing wrong? how fix this?

one thing might want try run javascript snippet through webdriver instance change input's value. this:

((javascriptexecutor) driver).executescript("$('#check-in').prop('value', '08/31/15');"); 

Comments

Popular posts from this blog

mysql - FireDac error 314 - but DLLs are in program directory -

git - How to list all releases of public repository with GitHub API V3 -

c++ - Getting C2512 "no default constructor" for `ClassA` error on the first parentheses of constructor for `ClassB`? -