Open a custom URL on Mobile

Hi there,

I’d like to test the ability of an iOS application to be opened with a URL. For example, I know iOS applications in Swift can be opened with a call like `UIApplication.shared.openURL` . For example, the default phone app can be opened with the URL tel:// . Is there a way to test this URL in Katalon?

Right now, I’m trying to test this on iOS using this flow:

1. Mobile.siwtchToWebView()
2. WebUI.openBrowser(‘tel://’, FailureHandling.CONTINUE_ON_FAILURE)

However I am receiving this error:

Unable to open browser with url: ‘tel://’ (Root cause: java.net.MalformedURLException: unknown protocol: tel)

even though browsing to the URL does in fact work on the actual device. Does anyone have a different way for how to do this?