addUIInterruptionMonitor(withDescription:handler:)
Adds a handler to the current context.
Declaration
func addUIInterruptionMonitor(withDescription handlerDescription: String, handler: @escaping (XCUIElement) -> Bool) -> any NSObjectProtocolParameters
- handlerDescription:
An explanation of the behavior and purpose of this handler, mainly used for debugging and analysis.
- handler:
A handler block for handling asynchronous UI interruptions such as alerts and other dialogs. Handlers should return True if they handled the UI, False if they did not. The handler is passed an Xcuielement representing the top level UI element for the alert.
Mentioned in
Return Value
Returns a token that can be used to unregister the handler. Handlers are invoked in the reverse order in which they are added until one of the handlers returns true, indicating that it has handled the alert.