Selenium Automation Testing -


i have webpage textbox field. calender icon near it. when click on calender icon calender view displayed. angularjs datepicker. can provide example automate type of date pickers. (while automation proceeds reaches calender opens calender , automation cannot proceeded.)

try pass value directly input box in date picker value store after selecting date in date picker

<input type="text" name="deliverydate" value="30/07/2015">

if text box taking date , if u click on text box open date picker, insted of clicking on text box try pass value directly below

webdriver.findelement(by.name("deliverydate")).sendkeys("30/07/2015"); 

Comments

Popular posts from this blog

python - jinja2: TemplateSyntaxError: expected token ',', got 'string' -

node.js - NodeJS remote terminal to Dropbear OpenWRT-Server -

Qt4: how to send QString inside a struct via QSharedMemory -