18 January 2026:


This forum is now archived and is in read-only mode. Please continue discussions on our improved new Sahi Pro Community forum.



Sahi Pro is an enterprise grade test automation platform which can automate web, mobile, API, windows and java based applications and SAP.

How to Enter Date in to date field

Keshava Reddy KKeshava Reddy K Members
edited November -1 in Sahi - Open Source
I have a Date field, which should not allow to enter dates from keyboard, need select with mouse only from date picker.
Here the issue is, all my dates are in Excel sheet, how to enter that dates in to Date field

Comments

  • sujatasujata Members
    _click(_italic("/.*/[5]"));---This is for click on the date picker(5 depends on the location of the date picker in the screen)
    //_click(_span("Mar"));(Mar indicates the current month.After clicking on month,user will get months list)
    //_click(_cell("Jan"));(This steps to select particular month,here as Jan.)
    _click(_cell("1"));(1 is date,)
Sign In or Register to comment.