Dear all,
We are happy to share with you a couple of major enhancements to Katalon Studio, which make it stronger to handle your automation testing projects. The 5.7.0 version provides new features and advanced improvements as a result of your feedback and contribution.
What’s new with Katalon Studio v5.7?
Katalon Studio 5.7 introduces all-new BDD testing capability allowing Business stakeholders to get involved in the testing process.
Access the Sample Project here.
Katalon Studio 5.7 offers a new object selector, Smart XPath to help increase the possibility of successfully identifying an object.
Learn more on How to utilize Smart XPath
The API Testing process now becomes easier with a new Variables tab to the Web Service Object details view for further supports parameterization.
Users no longer have to register an account on the website to download Katalon Studio. Simply download the tool, then sign up and activate it right inside the app, with a single step.
We hope you enjoy the latest version of Katalon Studio. For any feedback or question, please let us know via Katalon Forum.
Happy Testing,
The Katalon team.
function setCookie(cname,cvalue,exdays) { var d = new Date(); d.setTime(d.getTime() + (exdays*24*60*60*1000)); var expires = 'expires=' + d.toGMTString(); document.cookie = cname + '=' + cvalue + ';' + expires + ';path=/'; } function getCookie(cname) { var name = cname + '='; var decodedCookie = decodeURIComponent(document.cookie); var ca = decodedCookie.split(';'); for(var i = 0; i < ca.length; i++) { var c = ca[i]; while (c.charAt(0) == ' ') { c = c.substring(1); } if (c.indexOf(name) == 0) { return c.substring(name.length, c.length); } } return ''; } //get cookie here before set at file check_first_user.js var cookie_check_user = getCookie('check_first_user'); jQuery(document).mouseleave(function () { var cookie_popup_outof_page_is_closed = getCookie('popup_outof_page_is_closed'); //console.log('out'); if(cookie_popup_outof_page_is_closed != ''){ //do nothing } else{ } //script closed and save cookie for this jQuery('#modal-id-popup').on('hidden.bs.modal', function () { setCookie('popup_outof_page_is_closed', 1, 30); }) });