diff --git a/Sources/WebDriver/NoSuchElementError.swift b/Sources/WebDriver/NoSuchElementError.swift index 62b4ff6..3ec3e85 100644 --- a/Sources/WebDriver/NoSuchElementError.swift +++ b/Sources/WebDriver/NoSuchElementError.swift @@ -15,6 +15,6 @@ public struct NoSuchElementError: Error, CustomStringConvertible { public var errorResponse: ErrorResponse? { sourceError as? ErrorResponse } public var description: String { - "Element not found using locator [\(locator.using)=\(locator.value)]: \(sourceError)" + "No such element [\(locator.using)=\(locator.value)]: \(sourceError)" } }