Solved
Forum Discussion
5 Replies
Sort By
- groovyguyCommunity Hero
Here's a sample groovy script that you can use to offset by hours/days/etc.
def now = Calendar.getInstance() String TimeStamp; // Can offset by various fields // HOUR // DAY_OF_WEEK // etc now[HOUR] = now[HOUR] + offset; Timestamp = now.format("yyyy-MM-dd'T'HH:mm:ss.SSS");
- sanjSuper Contributor
Here are some cool examples of how to play with Date objects using Groovy
https://examples.javacodegeeks.com/jvm-languages/groovy/groovy-date-example/
- SandyapitesterFrequent Contributor
Hi All,
So far in my suite property have used ${= new Date().format('yyyy-MM-dd')}
this will help us to get the current date and time
but now I need to get the date current date + 2 or -2
I tried like
So far in my suite property have used ${= new Date().format('yyyy-MM-dd, +2')}
but it's not working.
Please share the imput