Skip to content
Advertisement

How to fetch the most recently added Date from the table

Scenario:

I have a Screen where i need to enter the Date by incrementing the Date by 10 days …. After entering the Date and saving the entered Date could come anywhere in the table. My Question is how do i fetch the newly entered date everytime from the table and store it so that with that date i can increment by date by 10.

Any leads can add more info

This is my Code:

JavaScript

If you above code – I initially fetched the Last row Date always as all the Newly Added rows would appear Last

and then – I get the

JavaScript

And then i navigate to the Create Screen:

JavaScript

After Naigating to the Create Screen – I enter the below code in order to Increment the Date:

JavaScript

After Making Modification to the Code as given below this is how it is :

JavaScript

Advertisement

Answer

Say you have a method List<WebElement> getRows(); that returns rows of your table and method String getDateAsText(WebElement row) that returns date value as a String from a particular table row. Say also your date pattern is year-month-day. Then you fetch max date as:

JavaScript

If you have already fetched dates like List<WebElement> dates = ... then you would use this:

JavaScript
User contributions licensed under: CC BY-SA
2 People found this is helpful
Advertisement