I have example date (which must be RFC3339 format)
2021-07-23T14:07:21Z
Next there is an endpoint which takes that date lets say
/setdate
Next I want verify whather it was set OK using another endpoint /getdate for examples.
The problem is that this second endpoit returns this date as
2021-07-23T16:07:21+02:00
whis effectively is the same date but its diffent string so I cant simply compare those two in robot framework.
Are there any robot framework keywords to create two date objects which will be the same when we compare their values?