Error performing a basic SSO login functionality

Hello, I am having a problem performing a simple login. When I first create the test case and record every step it works perfectly but when I run the test it fails. I´m using a vpn to test.

It’s a simple login and must show a homepage, but it’s showing another page of the site and shows an error in browser console. When a do a manual test its works fine but not with Katalon. I tried use a delay time in every step but did not work. This error occurs in all browsers.

My Katalon version is 7.6.2

This is the error in console:

content script: Katalon Waiter v.2 is up and running !
profile:1 [Intervention] Slow network is detected. See Intervention: WebFonts use adaptive timeouts to take fallback fonts - Chrome Platform Status for more details. Fallback font will be used while loading: https://consorcio-corredores-dev.modyo.be/assets/admin/materialdesignicons-webfont-3248c66efa5ff60a1088aa4ab9d39b395fcc2e77e03ae454621885aa1017f3a8.woff2?v=4.9.95
icons/favicon.ico:1 Failed to load resource: the server responded with a status of 404 ()
DevTools failed to load SourceMap: Could not load content for chrome-extension://mjbccjoldfiendemibncjknllbkgbklh/common/browser-polyfill.js.map: HTTP error: status code 404, net::ERR_UNKNOWN_URL_SCHEME
DevTools failed to load SourceMap: Could not load content for https://consorcio-corredores-dev.modyo.be/assets/session/popper.js.map: HTTP error: status code 404, net::ERR_HTTP_RESPONSE_CODE_FAILURE

I hope you can help me, thanks.

@josmerlym89 hello guy !
have you solved the problem ?
because i’m doing the same test now, and i’m facing with the same problem, another page is displayed instead of the homepage. the record is passing so well, but playback it does not work.

tell me if you found any solutions about the problem.
thanks

The “ERR_UNKNOWN_URL_SCHEME” error typically occurs in web development when a web browser encounters a URL with a scheme (e.g., “myapp://”) that it doesn’t recognize. To fix this error, you need to handle the URL scheme appropriately within your web application. If you’re trying to open a custom URL scheme, ensure that you have defined the scheme and associated it with your application in the operating system or browser settings. In the case of web development, consider using JavaScript or a framework like React Native or Cordova to handle custom URL schemes and implement the necessary actions when such URLs are triggered, ensuring that your web application can respond to these schemes as intended.