mkrausemOccasional ContributorJoined 5 years ago16 Posts6 LikesLikes received2 SolutionsView All Badges
ContributionsMost RecentMost LikesSolutionsRe: SoapUI stores access token with project XML? Hi, we use a script before we commit which need to be (manually) executed def clearOAuth2AccessToken(def project) { def profiles = project.getAuthRepository().getEntryList() profiles.each() { profile -> if(profile.getClass() == OAuth2Profile) { log.info("Clear Access token in profile: " + profile.getName()) profile.setAccessToken(null) profile.setAccessTokenIssuedTime(0) } } } Re: Simplifying Architecture Hi, we use an external script library and execute the steps via groovy-code. So we have only to share the scriptlibrary (via git) as an project on every testers machine. Re: Is there an easy way of retrieving ReadyAPI Test Step results to post to Zephyr Test Execution? Hi Murat, we use an external script library (https://support.smartbear.com/readyapi/docs/testing/scripts/libs/groovy-lib.html) which is called in the event handlers (https://support.smartbear.com/readyapi/docs/testing/handling-events.html) In these scripts we are calling the API (your step 1-4 and step 26-27). Until there is no native integration of Zephyr Scale in ReadyAPI we use our scripts. Kind Regards, Michael Re: finish test case as is. Not canceled, not failed! Hi, we are using in this case a Delay-Step with 1ms 🙂 Easy and it works (Better a dummy request) Re: Is there any setting so that I can see only changes instead of seeing the whole file Hi, last answer from 2021 For now, unfortunately, we don't have an ETA for this bug. 😞 Re: Is there any setting so that I can see only changes instead of seeing the whole file Hi richie , we had the same issue and I created an issue. It is internal als RIA-15964 in developlment. At the moment we use TortoiseGit to view the changes and don't use the ReadyAPI Git-Functionalty Kind Regards, Michael Re: Mass Test Case Import We use an Groovy-Script to import testsuite-xml-files into an project. Re: Auth Token is not getting refreshed due to which API is getting failed with error 401 Hi, we update our tokens via the SubmitListener - beforeSubmit-Event Our groovy checks the status of the required token and updates if it is older than x minutes (because the automatic function not works) Kind Regards, Michael Re: Auth Token is not getting refreshed due to which API is getting failed with error 401 Hi Jainsoumya , we are using a Submitlistener Script to get new tokens. With the options it worked not for us too. Kind Regards, Michael Enabling OAuth2 for soap-Requests It would really be helpful if OAuth2 authentication would be enabled for soap-Requesrts just like for Rest APIs. Our application supports this and other clients also. For ReadyAPI we use at the moment BasicAuth as workaround