From 596306e511d0f66422927e497145ab4b6f075f9e Mon Sep 17 00:00:00 2001 From: Tristan Labelle Date: Fri, 25 Oct 2024 17:04:49 -0400 Subject: [PATCH] More text tweaks --- Sources/WebDriver/NoSuchElementError.swift | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Sources/WebDriver/NoSuchElementError.swift b/Sources/WebDriver/NoSuchElementError.swift index 3ec3e85..9da4cfd 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 { - "No such element [\(locator.using)=\(locator.value)]: \(sourceError)" + "No element found using locator [\(locator.using)=\(locator.value)]: \(sourceError)" } }