ContributionsMost RecentMost LikesSolutionsSet value to a Hidden Field How can I map a Hidden Field object and set it's value in a Keyword test? Below is how my hidden object look like. I did see a post that I can access hidden objects if I turn on Hybrid Mode. However, I don't see a Hybrid Mode setting in the Project Properties but instead I see only Hybrid Mobile option. <input id="generateDoc" name="Product.GenerateDocuments" type="hidden" value="false"> In real world this action will not be performed a by user in UI however, I need this to identify if the request is coming from an actual User or from a Key word test. I know we could use different set of User accounts but that is not an option in my case. Any help on this is very much appreciated. Thanks! SolvedRe: Date.Format failing after upgrading ReadyAPI to version 3.3.1 This works as well "def lastUpdatedDateTimeUTC = new java.text.SimpleDateFormat("yyyy-MM-dd'T'HH:mm:ss").parse(lastUpdateDate)" Date.Format failing after upgrading ReadyAPI to version 3.3.1 After upgrading ReadyAPI to 3.3.1 from 3.3.0 the following Groovy script started failing with error "No signature of method: java.util.Date.format() is applicable for argument types: (String) values: [YYYY-MM-dd HH:mm:ss]". It dosen't like the .format of the date. Has the Groovy version got upgraded in version 3.3.1. Is there a quick solution for this issue? /*Assertion Groovy Script */ "import groovy.time.TimeCategory def now = new Date() log.info now.format("YYYY-MM-dd HH:mm:ss")" Solved