You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
it('types in range field',()=>{cy.visit('https://ant.design/components/date-picker/')cy.get('.ant-calendar-range-picker-input').eq(0).click()cy.get('.ant-calendar-date-panel').within(()=>{cy.get('.ant-calendar-range-left .ant-calendar-input').type('2018/12/12')cy.get('.ant-calendar-range-right .ant-calendar-input').type('2018/12/14')})})
We recommend questions relating to how to use Cypress be asked in our community chat in the future. Issues in our GitHub repo are reserved for potential bugs or feature requests.
Current behavior:
Now,I want to test a calendar like this :
you can refer to https://ant.design/components/date-picker/
Desired behavior:
I'd like to input to a calendar control ,how can I input the value ?
cy.get('.ant-calendar-range-picker.ant-input') .type('2018/12/12')
this doesn't work !
The text was updated successfully, but these errors were encountered: