In iOS 14 using Spotlight seems to work well:
		private func open(_ urlString: String) {
				XCUIDevice.shared.press(.home)
				XCUIApplication(bundleIdentifier: "com.apple.springboard").swipeDown()
				let spotlight = XCUIApplication(bundleIdentifier: "com.apple.Spotlight")
				spotlight.textFields["SpotlightSearchField"].typeText(urlString)
				spotlight.buttons["go"].tap()
		}
Topic:
App & System Services
SubTopic:
Core OS
Tags: