typeText function is slow by as much as 5 times in iOS 15 release
https://developer.apple.com/documentation/xctest/xcuielement/1500968-typetext
func testType() {
safariApp.textFields.containing(NSPredicate(format: "label CONTAINS[c] 'Address'")).firstMatch.tap()
self.measure {
safariApp.textFields.containing(NSPredicate(format: "label CONTAINS[c] 'Address'")).firstMatch.typeText("Hello World from Test App ")
}
//print(safariApp.debugDescription)
}