ContributionsMost RecentMost LikesSolutionsRe: ReadyAPI log date manipulation Hi Mr. Rao, Thanks a lot for your insights on this, was very useful. :smileyhappy: Regards, Neeraja Narayan Re: Test case involving Gmail API Hey that are some really useful resources. Thanks a lot :smileyhappy: Regards, Neeraja Narayan Re: ReadyAPI log date manipulation Hi Mr. Rao, Yes you are absolutely correct. Ill explain my scenario. I need to retrieve account details of a user who has her/his last password reset date older than 60 days. So when I send a login request to the api using this account details, I would get a response back saying " Your password needs to be reset". Currently there are no get requests that return the last password reset date of a user as one of the response parameters. So I was just trying to figure out ways of manipulation to achieve this. Any leads or ideas on this would be greatly appreciated. Thanks and Regards, Neeraja Narayan Test case involving Gmail API Hi, I have a scenario, where following a REST request test step a confirmation email is sent to the user to her/his registered gmail address. Is it possible to send a request to gmail api and confirm the receipt of the sent email. Any leads would be greatly appreciated. Thanks and Regards, Neeraja Narayan Re: ReadyAPI log date manipulation Sorry , clueless about how I missed the attachment. Please find the image below. And yes it is pointless and not the right approach but just out of sheer curiosity I was wondering if it can be done. Thanks, Neeraja ReadyAPI log date manipulation Hi, I was wondering if it is possible to manipulate the date logged in 'ReadyAPI log' for a test request run. My scenario : - I need to log a past date after running a particular REST request test step, instead of the current system date. I have attached an image of the date that I would like to be altered using a script or whichever means is possible. Thanks, Neeraja SolvedRe: Load different property values for the same property names across different test cases Hi Nastya Thank you so much for your response but the idea was to create a reusable file (excel/notepad/csv) and keep pulling the 2 property values when the respective test case is run. Any ideas on that ? Thanks and Regards, Neeraja Load different property values for the same property names across different test cases Hi, So I am trying to set different property values for a given set of test cases that have the same property names/keys. For example: In the below table I have 5 test cases and all 5 have the same 2 properties ( WorkflowStepName and MultiDimensional). Is there a way in SOAP UI Pro to load different values for the 2 properties for each of the test cases ?? WorkflowStepName MultiDimensional TC-3.2-01 Step 1 TRUE TC-3.2-02 Step 4 FALSE TC-3.2-03 Step 5 FALSE TC-3.2-04 Step 1 TRUE TC-3.2-05 Step 2 TRUE Re: Set the time zone to GMT of a formatted date (which is one of the request payload parameters) Awesome....that worked perfect :) !! Set the time zone to GMT of a formatted date (which is one of the request payload parameters) I was trying to pass a formatted date value in the Media type of a request and I wanted to set the time to GMT. When I use the below syntax in the Media Type section of the request: { "recordId": "xxxxx", "uploadDate": "${=new java.text.SimpleDateFormat("EEE, dd MMM yyyy HH:mm:ss z").format(new java.util.Date())}", "isActive": true } the "uploadDate" parameter is passed as --> "Fri, 27 Oct 2017 12:30:21 CDT" When I use the below syntax to try setting the time zone to GMT instead of CDT { "recordId": "xxxxx", "uploadDate":"${=new java.text.SimpleDateFormat("EEE, dd MMM yyyy HH:mm:ss z").setTimeZone(new java.util.TimeZone.getTimeZone("GMT")).format(new java.util.Date())}", "isActive": true } I get the below error "uploadDate":"startup failed: Script146.groovy: 1: unable to resolve class java.util.TimeZone.getTimeZone @ line 1, column 75. yyyy HH:mm:ss z").setTimeZone(new java.u ^ org.codehaus.groovy.syntax.SyntaxException: unable to resolve class java.util.TimeZone.getTimeZone @ line 1, column 75. Could you please help me resolve this issue? Solved