The Swift Package Index logo.Swift Package Index

Track the adoption of Swift 6 strict concurrency checks for data race safety. How many packages are Ready for Swift 6?

Build Information

Successful build of swift-webdriver, reference main (24f495), with Swift 6.0 for watchOS using Xcode 16.0 on 13 Nov 2024 20:12:15 UTC.

Swift 6 data race errors: 357

Build Command

env DEVELOPER_DIR=/Applications/Xcode-16.1.0.app xcrun xcodebuild -IDEClonedSourcePackagesDirPathOverride=$PWD/.dependencies -skipMacroValidation -skipPackagePluginValidation -derivedDataPath $PWD/.derivedData build -scheme swift-webdriver -destination generic/platform=watchOS OTHER_SWIFT_FLAGS=-stats-output-dir .stats -strict-concurrency=complete

Build Log

/Users/admin/builder/spi-builder-workspace/Sources/WebDriver/Keys.swift:32:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static let l = Self(rawValue: "l")
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/WebDriver/Keys.swift:33:23: warning: static property 'm' is not concurrency-safe because non-'Sendable' type 'Keys' may have shared mutable state; this is an error in the Swift 6 language mode
    public static let m = Self(rawValue: "m")
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/WebDriver/Keys.swift:2:15: note: consider making struct 'Keys' conform to the 'Sendable' protocol
public struct Keys: RawRepresentable {
              ^
                                    , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/WebDriver/Keys.swift:33:23: note: annotate 'm' with '@MainActor' if property should only be accessed from the main actor
    public static let m = Self(rawValue: "m")
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/WebDriver/Keys.swift:33:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static let m = Self(rawValue: "m")
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/WebDriver/Keys.swift:34:23: warning: static property 'n' is not concurrency-safe because non-'Sendable' type 'Keys' may have shared mutable state; this is an error in the Swift 6 language mode
    public static let n = Self(rawValue: "n")
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/WebDriver/Keys.swift:2:15: note: consider making struct 'Keys' conform to the 'Sendable' protocol
public struct Keys: RawRepresentable {
              ^
                                    , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/WebDriver/Keys.swift:34:23: note: annotate 'n' with '@MainActor' if property should only be accessed from the main actor
    public static let n = Self(rawValue: "n")
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/WebDriver/Keys.swift:34:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static let n = Self(rawValue: "n")
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/WebDriver/Keys.swift:35:23: warning: static property 'o' is not concurrency-safe because non-'Sendable' type 'Keys' may have shared mutable state; this is an error in the Swift 6 language mode
    public static let o = Self(rawValue: "o")
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/WebDriver/Keys.swift:2:15: note: consider making struct 'Keys' conform to the 'Sendable' protocol
public struct Keys: RawRepresentable {
              ^
                                    , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/WebDriver/Keys.swift:35:23: note: annotate 'o' with '@MainActor' if property should only be accessed from the main actor
    public static let o = Self(rawValue: "o")
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/WebDriver/Keys.swift:35:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static let o = Self(rawValue: "o")
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/WebDriver/Keys.swift:36:23: warning: static property 'p' is not concurrency-safe because non-'Sendable' type 'Keys' may have shared mutable state; this is an error in the Swift 6 language mode
    public static let p = Self(rawValue: "p")
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/WebDriver/Keys.swift:2:15: note: consider making struct 'Keys' conform to the 'Sendable' protocol
public struct Keys: RawRepresentable {
              ^
                                    , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/WebDriver/Keys.swift:36:23: note: annotate 'p' with '@MainActor' if property should only be accessed from the main actor
    public static let p = Self(rawValue: "p")
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/WebDriver/Keys.swift:36:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static let p = Self(rawValue: "p")
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/WebDriver/Keys.swift:37:23: warning: static property 'q' is not concurrency-safe because non-'Sendable' type 'Keys' may have shared mutable state; this is an error in the Swift 6 language mode
    public static let q = Self(rawValue: "q")
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/WebDriver/Keys.swift:2:15: note: consider making struct 'Keys' conform to the 'Sendable' protocol
public struct Keys: RawRepresentable {
              ^
                                    , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/WebDriver/Keys.swift:37:23: note: annotate 'q' with '@MainActor' if property should only be accessed from the main actor
    public static let q = Self(rawValue: "q")
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/WebDriver/Keys.swift:37:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static let q = Self(rawValue: "q")
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/WebDriver/Keys.swift:38:23: warning: static property 'r' is not concurrency-safe because non-'Sendable' type 'Keys' may have shared mutable state; this is an error in the Swift 6 language mode
    public static let r = Self(rawValue: "r")
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/WebDriver/Keys.swift:2:15: note: consider making struct 'Keys' conform to the 'Sendable' protocol
public struct Keys: RawRepresentable {
              ^
                                    , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/WebDriver/Keys.swift:38:23: note: annotate 'r' with '@MainActor' if property should only be accessed from the main actor
    public static let r = Self(rawValue: "r")
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/WebDriver/Keys.swift:38:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static let r = Self(rawValue: "r")
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/WebDriver/Keys.swift:39:23: warning: static property 's' is not concurrency-safe because non-'Sendable' type 'Keys' may have shared mutable state; this is an error in the Swift 6 language mode
    public static let s = Self(rawValue: "s")
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/WebDriver/Keys.swift:2:15: note: consider making struct 'Keys' conform to the 'Sendable' protocol
public struct Keys: RawRepresentable {
              ^
                                    , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/WebDriver/Keys.swift:39:23: note: annotate 's' with '@MainActor' if property should only be accessed from the main actor
    public static let s = Self(rawValue: "s")
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/WebDriver/Keys.swift:39:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static let s = Self(rawValue: "s")
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/WebDriver/Keys.swift:40:23: warning: static property 't' is not concurrency-safe because non-'Sendable' type 'Keys' may have shared mutable state; this is an error in the Swift 6 language mode
    public static let t = Self(rawValue: "t")
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/WebDriver/Keys.swift:2:15: note: consider making struct 'Keys' conform to the 'Sendable' protocol
public struct Keys: RawRepresentable {
              ^
                                    , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/WebDriver/Keys.swift:40:23: note: annotate 't' with '@MainActor' if property should only be accessed from the main actor
    public static let t = Self(rawValue: "t")
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/WebDriver/Keys.swift:40:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static let t = Self(rawValue: "t")
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/WebDriver/Keys.swift:41:23: warning: static property 'u' is not concurrency-safe because non-'Sendable' type 'Keys' may have shared mutable state; this is an error in the Swift 6 language mode
    public static let u = Self(rawValue: "u")
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/WebDriver/Keys.swift:2:15: note: consider making struct 'Keys' conform to the 'Sendable' protocol
public struct Keys: RawRepresentable {
              ^
                                    , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/WebDriver/Keys.swift:41:23: note: annotate 'u' with '@MainActor' if property should only be accessed from the main actor
    public static let u = Self(rawValue: "u")
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/WebDriver/Keys.swift:41:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static let u = Self(rawValue: "u")
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/WebDriver/Keys.swift:42:23: warning: static property 'v' is not concurrency-safe because non-'Sendable' type 'Keys' may have shared mutable state; this is an error in the Swift 6 language mode
    public static let v = Self(rawValue: "v")
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/WebDriver/Keys.swift:2:15: note: consider making struct 'Keys' conform to the 'Sendable' protocol
public struct Keys: RawRepresentable {
              ^
                                    , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/WebDriver/Keys.swift:42:23: note: annotate 'v' with '@MainActor' if property should only be accessed from the main actor
    public static let v = Self(rawValue: "v")
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/WebDriver/Keys.swift:42:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static let v = Self(rawValue: "v")
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/WebDriver/Keys.swift:43:23: warning: static property 'w' is not concurrency-safe because non-'Sendable' type 'Keys' may have shared mutable state; this is an error in the Swift 6 language mode
    public static let w = Self(rawValue: "w")
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/WebDriver/Keys.swift:2:15: note: consider making struct 'Keys' conform to the 'Sendable' protocol
public struct Keys: RawRepresentable {
              ^
                                    , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/WebDriver/Keys.swift:43:23: note: annotate 'w' with '@MainActor' if property should only be accessed from the main actor
    public static let w = Self(rawValue: "w")
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/WebDriver/Keys.swift:43:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static let w = Self(rawValue: "w")
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/WebDriver/Keys.swift:44:23: warning: static property 'x' is not concurrency-safe because non-'Sendable' type 'Keys' may have shared mutable state; this is an error in the Swift 6 language mode
    public static let x = Self(rawValue: "x")
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/WebDriver/Keys.swift:2:15: note: consider making struct 'Keys' conform to the 'Sendable' protocol
public struct Keys: RawRepresentable {
              ^
                                    , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/WebDriver/Keys.swift:44:23: note: annotate 'x' with '@MainActor' if property should only be accessed from the main actor
    public static let x = Self(rawValue: "x")
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/WebDriver/Keys.swift:44:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static let x = Self(rawValue: "x")
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/WebDriver/Keys.swift:45:23: warning: static property 'y' is not concurrency-safe because non-'Sendable' type 'Keys' may have shared mutable state; this is an error in the Swift 6 language mode
    public static let y = Self(rawValue: "y")
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/WebDriver/Keys.swift:2:15: note: consider making struct 'Keys' conform to the 'Sendable' protocol
public struct Keys: RawRepresentable {
              ^
                                    , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/WebDriver/Keys.swift:45:23: note: annotate 'y' with '@MainActor' if property should only be accessed from the main actor
    public static let y = Self(rawValue: "y")
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/WebDriver/Keys.swift:45:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static let y = Self(rawValue: "y")
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/WebDriver/Keys.swift:46:23: warning: static property 'z' is not concurrency-safe because non-'Sendable' type 'Keys' may have shared mutable state; this is an error in the Swift 6 language mode
    public static let z = Self(rawValue: "z")
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/WebDriver/Keys.swift:2:15: note: consider making struct 'Keys' conform to the 'Sendable' protocol
public struct Keys: RawRepresentable {
              ^
                                    , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/WebDriver/Keys.swift:46:23: note: annotate 'z' with '@MainActor' if property should only be accessed from the main actor
    public static let z = Self(rawValue: "z")
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/WebDriver/Keys.swift:46:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static let z = Self(rawValue: "z")
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/WebDriver/Keys.swift:48:23: warning: static property 'digit1' is not concurrency-safe because non-'Sendable' type 'Keys' may have shared mutable state; this is an error in the Swift 6 language mode
    public static let digit1 = Self(rawValue: "1")
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/WebDriver/Keys.swift:2:15: note: consider making struct 'Keys' conform to the 'Sendable' protocol
public struct Keys: RawRepresentable {
              ^
                                    , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/WebDriver/Keys.swift:48:23: note: annotate 'digit1' with '@MainActor' if property should only be accessed from the main actor
    public static let digit1 = Self(rawValue: "1")
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/WebDriver/Keys.swift:48:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static let digit1 = Self(rawValue: "1")
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/WebDriver/Keys.swift:49:23: warning: static property 'digit2' is not concurrency-safe because non-'Sendable' type 'Keys' may have shared mutable state; this is an error in the Swift 6 language mode
    public static let digit2 = Self(rawValue: "2")
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/WebDriver/Keys.swift:2:15: note: consider making struct 'Keys' conform to the 'Sendable' protocol
public struct Keys: RawRepresentable {
              ^
                                    , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/WebDriver/Keys.swift:49:23: note: annotate 'digit2' with '@MainActor' if property should only be accessed from the main actor
    public static let digit2 = Self(rawValue: "2")
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/WebDriver/Keys.swift:49:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static let digit2 = Self(rawValue: "2")
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/WebDriver/Keys.swift:50:23: warning: static property 'digit3' is not concurrency-safe because non-'Sendable' type 'Keys' may have shared mutable state; this is an error in the Swift 6 language mode
    public static let digit3 = Self(rawValue: "3")
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/WebDriver/Keys.swift:2:15: note: consider making struct 'Keys' conform to the 'Sendable' protocol
public struct Keys: RawRepresentable {
              ^
                                    , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/WebDriver/Keys.swift:50:23: note: annotate 'digit3' with '@MainActor' if property should only be accessed from the main actor
    public static let digit3 = Self(rawValue: "3")
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/WebDriver/Keys.swift:50:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static let digit3 = Self(rawValue: "3")
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/WebDriver/Keys.swift:51:23: warning: static property 'digit4' is not concurrency-safe because non-'Sendable' type 'Keys' may have shared mutable state; this is an error in the Swift 6 language mode
    public static let digit4 = Self(rawValue: "4")
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/WebDriver/Keys.swift:2:15: note: consider making struct 'Keys' conform to the 'Sendable' protocol
public struct Keys: RawRepresentable {
              ^
                                    , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/WebDriver/Keys.swift:51:23: note: annotate 'digit4' with '@MainActor' if property should only be accessed from the main actor
    public static let digit4 = Self(rawValue: "4")
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/WebDriver/Keys.swift:51:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static let digit4 = Self(rawValue: "4")
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/WebDriver/Keys.swift:52:23: warning: static property 'digit5' is not concurrency-safe because non-'Sendable' type 'Keys' may have shared mutable state; this is an error in the Swift 6 language mode
    public static let digit5 = Self(rawValue: "5")
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/WebDriver/Keys.swift:2:15: note: consider making struct 'Keys' conform to the 'Sendable' protocol
public struct Keys: RawRepresentable {
              ^
                                    , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/WebDriver/Keys.swift:52:23: note: annotate 'digit5' with '@MainActor' if property should only be accessed from the main actor
    public static let digit5 = Self(rawValue: "5")
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/WebDriver/Keys.swift:52:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static let digit5 = Self(rawValue: "5")
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/WebDriver/Keys.swift:53:23: warning: static property 'digit6' is not concurrency-safe because non-'Sendable' type 'Keys' may have shared mutable state; this is an error in the Swift 6 language mode
    public static let digit6 = Self(rawValue: "6")
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/WebDriver/Keys.swift:2:15: note: consider making struct 'Keys' conform to the 'Sendable' protocol
public struct Keys: RawRepresentable {
              ^
                                    , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/WebDriver/Keys.swift:53:23: note: annotate 'digit6' with '@MainActor' if property should only be accessed from the main actor
    public static let digit6 = Self(rawValue: "6")
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/WebDriver/Keys.swift:53:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static let digit6 = Self(rawValue: "6")
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/WebDriver/Keys.swift:54:23: warning: static property 'digit7' is not concurrency-safe because non-'Sendable' type 'Keys' may have shared mutable state; this is an error in the Swift 6 language mode
    public static let digit7 = Self(rawValue: "7")
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/WebDriver/Keys.swift:2:15: note: consider making struct 'Keys' conform to the 'Sendable' protocol
public struct Keys: RawRepresentable {
              ^
                                    , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/WebDriver/Keys.swift:54:23: note: annotate 'digit7' with '@MainActor' if property should only be accessed from the main actor
    public static let digit7 = Self(rawValue: "7")
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/WebDriver/Keys.swift:54:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static let digit7 = Self(rawValue: "7")
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/WebDriver/Keys.swift:55:23: warning: static property 'digit8' is not concurrency-safe because non-'Sendable' type 'Keys' may have shared mutable state; this is an error in the Swift 6 language mode
    public static let digit8 = Self(rawValue: "8")
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/WebDriver/Keys.swift:2:15: note: consider making struct 'Keys' conform to the 'Sendable' protocol
public struct Keys: RawRepresentable {
              ^
                                    , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/WebDriver/Keys.swift:55:23: note: annotate 'digit8' with '@MainActor' if property should only be accessed from the main actor
    public static let digit8 = Self(rawValue: "8")
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/WebDriver/Keys.swift:55:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static let digit8 = Self(rawValue: "8")
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/WebDriver/Keys.swift:56:23: warning: static property 'digit9' is not concurrency-safe because non-'Sendable' type 'Keys' may have shared mutable state; this is an error in the Swift 6 language mode
    public static let digit9 = Self(rawValue: "9")
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/WebDriver/Keys.swift:2:15: note: consider making struct 'Keys' conform to the 'Sendable' protocol
public struct Keys: RawRepresentable {
              ^
                                    , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/WebDriver/Keys.swift:56:23: note: annotate 'digit9' with '@MainActor' if property should only be accessed from the main actor
    public static let digit9 = Self(rawValue: "9")
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/WebDriver/Keys.swift:56:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static let digit9 = Self(rawValue: "9")
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/WebDriver/Keys.swift:57:23: warning: static property 'digit0' is not concurrency-safe because non-'Sendable' type 'Keys' may have shared mutable state; this is an error in the Swift 6 language mode
    public static let digit0 = Self(rawValue: "0")
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/WebDriver/Keys.swift:2:15: note: consider making struct 'Keys' conform to the 'Sendable' protocol
public struct Keys: RawRepresentable {
              ^
                                    , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/WebDriver/Keys.swift:57:23: note: annotate 'digit0' with '@MainActor' if property should only be accessed from the main actor
    public static let digit0 = Self(rawValue: "0")
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/WebDriver/Keys.swift:57:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static let digit0 = Self(rawValue: "0")
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/WebDriver/Keys.swift:59:23: warning: static property 'cancel' is not concurrency-safe because non-'Sendable' type 'Keys' may have shared mutable state; this is an error in the Swift 6 language mode
    public static let cancel = Self(rawValue: "\u{E001}")
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/WebDriver/Keys.swift:2:15: note: consider making struct 'Keys' conform to the 'Sendable' protocol
public struct Keys: RawRepresentable {
              ^
                                    , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/WebDriver/Keys.swift:59:23: note: annotate 'cancel' with '@MainActor' if property should only be accessed from the main actor
    public static let cancel = Self(rawValue: "\u{E001}")
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/WebDriver/Keys.swift:59:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static let cancel = Self(rawValue: "\u{E001}")
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/WebDriver/Keys.swift:60:23: warning: static property 'help' is not concurrency-safe because non-'Sendable' type 'Keys' may have shared mutable state; this is an error in the Swift 6 language mode
    public static let help = Self(rawValue: "\u{E002}")
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/WebDriver/Keys.swift:2:15: note: consider making struct 'Keys' conform to the 'Sendable' protocol
public struct Keys: RawRepresentable {
              ^
                                    , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/WebDriver/Keys.swift:60:23: note: annotate 'help' with '@MainActor' if property should only be accessed from the main actor
    public static let help = Self(rawValue: "\u{E002}")
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/WebDriver/Keys.swift:60:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static let help = Self(rawValue: "\u{E002}")
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/WebDriver/Keys.swift:61:23: warning: static property 'backspace' is not concurrency-safe because non-'Sendable' type 'Keys' may have shared mutable state; this is an error in the Swift 6 language mode
    public static let backspace = Self(rawValue: "\u{E003}")
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/WebDriver/Keys.swift:2:15: note: consider making struct 'Keys' conform to the 'Sendable' protocol
public struct Keys: RawRepresentable {
              ^
                                    , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/WebDriver/Keys.swift:61:23: note: annotate 'backspace' with '@MainActor' if property should only be accessed from the main actor
    public static let backspace = Self(rawValue: "\u{E003}")
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/WebDriver/Keys.swift:61:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static let backspace = Self(rawValue: "\u{E003}")
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/WebDriver/Keys.swift:62:23: warning: static property 'tab' is not concurrency-safe because non-'Sendable' type 'Keys' may have shared mutable state; this is an error in the Swift 6 language mode
    public static let tab = Self(rawValue: "\u{E004}")
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/WebDriver/Keys.swift:2:15: note: consider making struct 'Keys' conform to the 'Sendable' protocol
public struct Keys: RawRepresentable {
              ^
                                    , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/WebDriver/Keys.swift:62:23: note: annotate 'tab' with '@MainActor' if property should only be accessed from the main actor
    public static let tab = Self(rawValue: "\u{E004}")
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/WebDriver/Keys.swift:62:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static let tab = Self(rawValue: "\u{E004}")
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/WebDriver/Keys.swift:63:23: warning: static property 'clear' is not concurrency-safe because non-'Sendable' type 'Keys' may have shared mutable state; this is an error in the Swift 6 language mode
    public static let clear = Self(rawValue: "\u{E005}")
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/WebDriver/Keys.swift:2:15: note: consider making struct 'Keys' conform to the 'Sendable' protocol
public struct Keys: RawRepresentable {
              ^
                                    , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/WebDriver/Keys.swift:63:23: note: annotate 'clear' with '@MainActor' if property should only be accessed from the main actor
    public static let clear = Self(rawValue: "\u{E005}")
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/WebDriver/Keys.swift:63:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static let clear = Self(rawValue: "\u{E005}")
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/WebDriver/Keys.swift:64:23: warning: static property 'returnKey' is not concurrency-safe because non-'Sendable' type 'Keys' may have shared mutable state; this is an error in the Swift 6 language mode
    public static let returnKey = Self(rawValue: "\u{E006}")
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/WebDriver/Keys.swift:2:15: note: consider making struct 'Keys' conform to the 'Sendable' protocol
public struct Keys: RawRepresentable {
              ^
                                    , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/WebDriver/Keys.swift:64:23: note: annotate 'returnKey' with '@MainActor' if property should only be accessed from the main actor
    public static let returnKey = Self(rawValue: "\u{E006}")
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/WebDriver/Keys.swift:64:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static let returnKey = Self(rawValue: "\u{E006}")
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/WebDriver/Keys.swift:65:23: warning: static property 'enter' is not concurrency-safe because non-'Sendable' type 'Keys' may have shared mutable state; this is an error in the Swift 6 language mode
    public static let enter = Self(rawValue: "\u{E007}")
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/WebDriver/Keys.swift:2:15: note: consider making struct 'Keys' conform to the 'Sendable' protocol
public struct Keys: RawRepresentable {
              ^
                                    , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/WebDriver/Keys.swift:65:23: note: annotate 'enter' with '@MainActor' if property should only be accessed from the main actor
    public static let enter = Self(rawValue: "\u{E007}")
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/WebDriver/Keys.swift:65:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static let enter = Self(rawValue: "\u{E007}")
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/WebDriver/Keys.swift:66:23: warning: static property 'pause' is not concurrency-safe because non-'Sendable' type 'Keys' may have shared mutable state; this is an error in the Swift 6 language mode
    public static let pause = Self(rawValue: "\u{E00B}")
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/WebDriver/Keys.swift:2:15: note: consider making struct 'Keys' conform to the 'Sendable' protocol
public struct Keys: RawRepresentable {
              ^
                                    , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/WebDriver/Keys.swift:66:23: note: annotate 'pause' with '@MainActor' if property should only be accessed from the main actor
    public static let pause = Self(rawValue: "\u{E00B}")
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/WebDriver/Keys.swift:66:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static let pause = Self(rawValue: "\u{E00B}")
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/WebDriver/Keys.swift:67:23: warning: static property 'escape' is not concurrency-safe because non-'Sendable' type 'Keys' may have shared mutable state; this is an error in the Swift 6 language mode
    public static let escape = Self(rawValue: "\u{E00C}")
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/WebDriver/Keys.swift:2:15: note: consider making struct 'Keys' conform to the 'Sendable' protocol
public struct Keys: RawRepresentable {
              ^
                                    , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/WebDriver/Keys.swift:67:23: note: annotate 'escape' with '@MainActor' if property should only be accessed from the main actor
    public static let escape = Self(rawValue: "\u{E00C}")
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/WebDriver/Keys.swift:67:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static let escape = Self(rawValue: "\u{E00C}")
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/WebDriver/Keys.swift:68:23: warning: static property 'space' is not concurrency-safe because non-'Sendable' type 'Keys' may have shared mutable state; this is an error in the Swift 6 language mode
    public static let space = Self(rawValue: "\u{E00D}")
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/WebDriver/Keys.swift:2:15: note: consider making struct 'Keys' conform to the 'Sendable' protocol
public struct Keys: RawRepresentable {
              ^
                                    , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/WebDriver/Keys.swift:68:23: note: annotate 'space' with '@MainActor' if property should only be accessed from the main actor
    public static let space = Self(rawValue: "\u{E00D}")
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/WebDriver/Keys.swift:68:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static let space = Self(rawValue: "\u{E00D}")
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/WebDriver/Keys.swift:69:23: warning: static property 'pageup' is not concurrency-safe because non-'Sendable' type 'Keys' may have shared mutable state; this is an error in the Swift 6 language mode
    public static let pageup = Self(rawValue: "\u{E00E}")
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/WebDriver/Keys.swift:2:15: note: consider making struct 'Keys' conform to the 'Sendable' protocol
public struct Keys: RawRepresentable {
              ^
                                    , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/WebDriver/Keys.swift:69:23: note: annotate 'pageup' with '@MainActor' if property should only be accessed from the main actor
    public static let pageup = Self(rawValue: "\u{E00E}")
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/WebDriver/Keys.swift:69:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static let pageup = Self(rawValue: "\u{E00E}")
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/WebDriver/Keys.swift:70:23: warning: static property 'pagedown' is not concurrency-safe because non-'Sendable' type 'Keys' may have shared mutable state; this is an error in the Swift 6 language mode
    public static let pagedown = Self(rawValue: "\u{E00F}")
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/WebDriver/Keys.swift:2:15: note: consider making struct 'Keys' conform to the 'Sendable' protocol
public struct Keys: RawRepresentable {
              ^
                                    , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/WebDriver/Keys.swift:70:23: note: annotate 'pagedown' with '@MainActor' if property should only be accessed from the main actor
    public static let pagedown = Self(rawValue: "\u{E00F}")
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/WebDriver/Keys.swift:70:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static let pagedown = Self(rawValue: "\u{E00F}")
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/WebDriver/Keys.swift:71:23: warning: static property 'end' is not concurrency-safe because non-'Sendable' type 'Keys' may have shared mutable state; this is an error in the Swift 6 language mode
    public static let end = Self(rawValue: "\u{E010}")
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/WebDriver/Keys.swift:2:15: note: consider making struct 'Keys' conform to the 'Sendable' protocol
public struct Keys: RawRepresentable {
              ^
                                    , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/WebDriver/Keys.swift:71:23: note: annotate 'end' with '@MainActor' if property should only be accessed from the main actor
    public static let end = Self(rawValue: "\u{E010}")
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/WebDriver/Keys.swift:71:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static let end = Self(rawValue: "\u{E010}")
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/WebDriver/Keys.swift:72:23: warning: static property 'home' is not concurrency-safe because non-'Sendable' type 'Keys' may have shared mutable state; this is an error in the Swift 6 language mode
    public static let home = Self(rawValue: "\u{E011}")
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/WebDriver/Keys.swift:2:15: note: consider making struct 'Keys' conform to the 'Sendable' protocol
public struct Keys: RawRepresentable {
              ^
                                    , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/WebDriver/Keys.swift:72:23: note: annotate 'home' with '@MainActor' if property should only be accessed from the main actor
    public static let home = Self(rawValue: "\u{E011}")
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/WebDriver/Keys.swift:72:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static let home = Self(rawValue: "\u{E011}")
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/WebDriver/Keys.swift:73:23: warning: static property 'leftArrow' is not concurrency-safe because non-'Sendable' type 'Keys' may have shared mutable state; this is an error in the Swift 6 language mode
    public static let leftArrow = Self(rawValue: "\u{E012}")
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/WebDriver/Keys.swift:2:15: note: consider making struct 'Keys' conform to the 'Sendable' protocol
public struct Keys: RawRepresentable {
              ^
                                    , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/WebDriver/Keys.swift:73:23: note: annotate 'leftArrow' with '@MainActor' if property should only be accessed from the main actor
    public static let leftArrow = Self(rawValue: "\u{E012}")
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/WebDriver/Keys.swift:73:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static let leftArrow = Self(rawValue: "\u{E012}")
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/WebDriver/Keys.swift:74:23: warning: static property 'upArrow' is not concurrency-safe because non-'Sendable' type 'Keys' may have shared mutable state; this is an error in the Swift 6 language mode
    public static let upArrow = Self(rawValue: "\u{E013}")
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/WebDriver/Keys.swift:2:15: note: consider making struct 'Keys' conform to the 'Sendable' protocol
public struct Keys: RawRepresentable {
              ^
                                    , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/WebDriver/Keys.swift:74:23: note: annotate 'upArrow' with '@MainActor' if property should only be accessed from the main actor
    public static let upArrow = Self(rawValue: "\u{E013}")
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/WebDriver/Keys.swift:74:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static let upArrow = Self(rawValue: "\u{E013}")
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/WebDriver/Keys.swift:75:23: warning: static property 'rightArrow' is not concurrency-safe because non-'Sendable' type 'Keys' may have shared mutable state; this is an error in the Swift 6 language mode
    public static let rightArrow = Self(rawValue: "\u{E014}")
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/WebDriver/Keys.swift:2:15: note: consider making struct 'Keys' conform to the 'Sendable' protocol
public struct Keys: RawRepresentable {
              ^
                                    , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/WebDriver/Keys.swift:75:23: note: annotate 'rightArrow' with '@MainActor' if property should only be accessed from the main actor
    public static let rightArrow = Self(rawValue: "\u{E014}")
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/WebDriver/Keys.swift:75:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static let rightArrow = Self(rawValue: "\u{E014}")
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/WebDriver/Keys.swift:76:23: warning: static property 'downArrow' is not concurrency-safe because non-'Sendable' type 'Keys' may have shared mutable state; this is an error in the Swift 6 language mode
    public static let downArrow = Self(rawValue: "\u{E015}")
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/WebDriver/Keys.swift:2:15: note: consider making struct 'Keys' conform to the 'Sendable' protocol
public struct Keys: RawRepresentable {
              ^
                                    , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/WebDriver/Keys.swift:76:23: note: annotate 'downArrow' with '@MainActor' if property should only be accessed from the main actor
    public static let downArrow = Self(rawValue: "\u{E015}")
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/WebDriver/Keys.swift:76:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static let downArrow = Self(rawValue: "\u{E015}")
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/WebDriver/Keys.swift:77:23: warning: static property 'insert' is not concurrency-safe because non-'Sendable' type 'Keys' may have shared mutable state; this is an error in the Swift 6 language mode
    public static let insert = Self(rawValue: "\u{E016}")
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/WebDriver/Keys.swift:2:15: note: consider making struct 'Keys' conform to the 'Sendable' protocol
public struct Keys: RawRepresentable {
              ^
                                    , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/WebDriver/Keys.swift:77:23: note: annotate 'insert' with '@MainActor' if property should only be accessed from the main actor
    public static let insert = Self(rawValue: "\u{E016}")
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/WebDriver/Keys.swift:77:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static let insert = Self(rawValue: "\u{E016}")
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/WebDriver/Keys.swift:78:23: warning: static property 'delete' is not concurrency-safe because non-'Sendable' type 'Keys' may have shared mutable state; this is an error in the Swift 6 language mode
    public static let delete = Self(rawValue: "\u{E017}")
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/WebDriver/Keys.swift:2:15: note: consider making struct 'Keys' conform to the 'Sendable' protocol
public struct Keys: RawRepresentable {
              ^
                                    , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/WebDriver/Keys.swift:78:23: note: annotate 'delete' with '@MainActor' if property should only be accessed from the main actor
    public static let delete = Self(rawValue: "\u{E017}")
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/WebDriver/Keys.swift:78:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static let delete = Self(rawValue: "\u{E017}")
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/WebDriver/Keys.swift:79:23: warning: static property 'semicolon' is not concurrency-safe because non-'Sendable' type 'Keys' may have shared mutable state; this is an error in the Swift 6 language mode
    public static let semicolon = Self(rawValue: "\u{E018}")
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/WebDriver/Keys.swift:2:15: note: consider making struct 'Keys' conform to the 'Sendable' protocol
public struct Keys: RawRepresentable {
              ^
                                    , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/WebDriver/Keys.swift:79:23: note: annotate 'semicolon' with '@MainActor' if property should only be accessed from the main actor
    public static let semicolon = Self(rawValue: "\u{E018}")
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/WebDriver/Keys.swift:79:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static let semicolon = Self(rawValue: "\u{E018}")
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/WebDriver/Keys.swift:80:23: warning: static property 'equals' is not concurrency-safe because non-'Sendable' type 'Keys' may have shared mutable state; this is an error in the Swift 6 language mode
    public static let equals = Self(rawValue: "\u{E019}")
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/WebDriver/Keys.swift:2:15: note: consider making struct 'Keys' conform to the 'Sendable' protocol
public struct Keys: RawRepresentable {
              ^
                                    , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/WebDriver/Keys.swift:80:23: note: annotate 'equals' with '@MainActor' if property should only be accessed from the main actor
    public static let equals = Self(rawValue: "\u{E019}")
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/WebDriver/Keys.swift:80:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static let equals = Self(rawValue: "\u{E019}")
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/WebDriver/Keys.swift:81:23: warning: static property 'numpad0' is not concurrency-safe because non-'Sendable' type 'Keys' may have shared mutable state; this is an error in the Swift 6 language mode
    public static let numpad0 = Self(rawValue: "\u{E01A}")
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/WebDriver/Keys.swift:2:15: note: consider making struct 'Keys' conform to the 'Sendable' protocol
public struct Keys: RawRepresentable {
              ^
                                    , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/WebDriver/Keys.swift:81:23: note: annotate 'numpad0' with '@MainActor' if property should only be accessed from the main actor
    public static let numpad0 = Self(rawValue: "\u{E01A}")
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/WebDriver/Keys.swift:81:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static let numpad0 = Self(rawValue: "\u{E01A}")
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/WebDriver/Keys.swift:82:23: warning: static property 'numpad1' is not concurrency-safe because non-'Sendable' type 'Keys' may have shared mutable state; this is an error in the Swift 6 language mode
    public static let numpad1 = Self(rawValue: "\u{E01B}")
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/WebDriver/Keys.swift:2:15: note: consider making struct 'Keys' conform to the 'Sendable' protocol
public struct Keys: RawRepresentable {
              ^
                                    , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/WebDriver/Keys.swift:82:23: note: annotate 'numpad1' with '@MainActor' if property should only be accessed from the main actor
    public static let numpad1 = Self(rawValue: "\u{E01B}")
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/WebDriver/Keys.swift:82:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static let numpad1 = Self(rawValue: "\u{E01B}")
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/WebDriver/Keys.swift:83:23: warning: static property 'numpad2' is not concurrency-safe because non-'Sendable' type 'Keys' may have shared mutable state; this is an error in the Swift 6 language mode
    public static let numpad2 = Self(rawValue: "\u{E01C}")
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/WebDriver/Keys.swift:2:15: note: consider making struct 'Keys' conform to the 'Sendable' protocol
public struct Keys: RawRepresentable {
              ^
                                    , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/WebDriver/Keys.swift:83:23: note: annotate 'numpad2' with '@MainActor' if property should only be accessed from the main actor
    public static let numpad2 = Self(rawValue: "\u{E01C}")
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/WebDriver/Keys.swift:83:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static let numpad2 = Self(rawValue: "\u{E01C}")
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/WebDriver/Keys.swift:84:23: warning: static property 'numpad3' is not concurrency-safe because non-'Sendable' type 'Keys' may have shared mutable state; this is an error in the Swift 6 language mode
    public static let numpad3 = Self(rawValue: "\u{E01D}")
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/WebDriver/Keys.swift:2:15: note: consider making struct 'Keys' conform to the 'Sendable' protocol
public struct Keys: RawRepresentable {
              ^
                                    , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/WebDriver/Keys.swift:84:23: note: annotate 'numpad3' with '@MainActor' if property should only be accessed from the main actor
    public static let numpad3 = Self(rawValue: "\u{E01D}")
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/WebDriver/Keys.swift:84:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static let numpad3 = Self(rawValue: "\u{E01D}")
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/WebDriver/Keys.swift:85:23: warning: static property 'numpad4' is not concurrency-safe because non-'Sendable' type 'Keys' may have shared mutable state; this is an error in the Swift 6 language mode
    public static let numpad4 = Self(rawValue: "\u{E01E}")
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/WebDriver/Keys.swift:2:15: note: consider making struct 'Keys' conform to the 'Sendable' protocol
public struct Keys: RawRepresentable {
              ^
                                    , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/WebDriver/Keys.swift:85:23: note: annotate 'numpad4' with '@MainActor' if property should only be accessed from the main actor
    public static let numpad4 = Self(rawValue: "\u{E01E}")
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/WebDriver/Keys.swift:85:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static let numpad4 = Self(rawValue: "\u{E01E}")
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/WebDriver/Keys.swift:86:23: warning: static property 'numpad5' is not concurrency-safe because non-'Sendable' type 'Keys' may have shared mutable state; this is an error in the Swift 6 language mode
    public static let numpad5 = Self(rawValue: "\u{E01F}")
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/WebDriver/Keys.swift:2:15: note: consider making struct 'Keys' conform to the 'Sendable' protocol
public struct Keys: RawRepresentable {
              ^
                                    , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/WebDriver/Keys.swift:86:23: note: annotate 'numpad5' with '@MainActor' if property should only be accessed from the main actor
    public static let numpad5 = Self(rawValue: "\u{E01F}")
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/WebDriver/Keys.swift:86:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static let numpad5 = Self(rawValue: "\u{E01F}")
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/WebDriver/Keys.swift:87:23: warning: static property 'numpad6' is not concurrency-safe because non-'Sendable' type 'Keys' may have shared mutable state; this is an error in the Swift 6 language mode
    public static let numpad6 = Self(rawValue: "\u{E020}")
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/WebDriver/Keys.swift:2:15: note: consider making struct 'Keys' conform to the 'Sendable' protocol
public struct Keys: RawRepresentable {
              ^
                                    , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/WebDriver/Keys.swift:87:23: note: annotate 'numpad6' with '@MainActor' if property should only be accessed from the main actor
    public static let numpad6 = Self(rawValue: "\u{E020}")
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/WebDriver/Keys.swift:87:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static let numpad6 = Self(rawValue: "\u{E020}")
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/WebDriver/Keys.swift:88:23: warning: static property 'numpad7' is not concurrency-safe because non-'Sendable' type 'Keys' may have shared mutable state; this is an error in the Swift 6 language mode
    public static let numpad7 = Self(rawValue: "\u{E021}")
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/WebDriver/Keys.swift:2:15: note: consider making struct 'Keys' conform to the 'Sendable' protocol
public struct Keys: RawRepresentable {
              ^
                                    , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/WebDriver/Keys.swift:88:23: note: annotate 'numpad7' with '@MainActor' if property should only be accessed from the main actor
    public static let numpad7 = Self(rawValue: "\u{E021}")
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/WebDriver/Keys.swift:88:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static let numpad7 = Self(rawValue: "\u{E021}")
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/WebDriver/Keys.swift:89:23: warning: static property 'numpad8' is not concurrency-safe because non-'Sendable' type 'Keys' may have shared mutable state; this is an error in the Swift 6 language mode
    public static let numpad8 = Self(rawValue: "\u{E022}")
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/WebDriver/Keys.swift:2:15: note: consider making struct 'Keys' conform to the 'Sendable' protocol
public struct Keys: RawRepresentable {
              ^
                                    , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/WebDriver/Keys.swift:89:23: note: annotate 'numpad8' with '@MainActor' if property should only be accessed from the main actor
    public static let numpad8 = Self(rawValue: "\u{E022}")
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/WebDriver/Keys.swift:89:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static let numpad8 = Self(rawValue: "\u{E022}")
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/WebDriver/Keys.swift:90:23: warning: static property 'numpad9' is not concurrency-safe because non-'Sendable' type 'Keys' may have shared mutable state; this is an error in the Swift 6 language mode
    public static let numpad9 = Self(rawValue: "\u{E023}")
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/WebDriver/Keys.swift:2:15: note: consider making struct 'Keys' conform to the 'Sendable' protocol
public struct Keys: RawRepresentable {
              ^
                                    , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/WebDriver/Keys.swift:90:23: note: annotate 'numpad9' with '@MainActor' if property should only be accessed from the main actor
    public static let numpad9 = Self(rawValue: "\u{E023}")
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/WebDriver/Keys.swift:90:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static let numpad9 = Self(rawValue: "\u{E023}")
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/WebDriver/Keys.swift:91:23: warning: static property 'multiply' is not concurrency-safe because non-'Sendable' type 'Keys' may have shared mutable state; this is an error in the Swift 6 language mode
    public static let multiply = Self(rawValue: "\u{E024}")
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/WebDriver/Keys.swift:2:15: note: consider making struct 'Keys' conform to the 'Sendable' protocol
public struct Keys: RawRepresentable {
              ^
                                    , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/WebDriver/Keys.swift:91:23: note: annotate 'multiply' with '@MainActor' if property should only be accessed from the main actor
    public static let multiply = Self(rawValue: "\u{E024}")
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/WebDriver/Keys.swift:91:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static let multiply = Self(rawValue: "\u{E024}")
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/WebDriver/Keys.swift:92:23: warning: static property 'add' is not concurrency-safe because non-'Sendable' type 'Keys' may have shared mutable state; this is an error in the Swift 6 language mode
    public static let add = Self(rawValue: "\u{E025}")
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/WebDriver/Keys.swift:2:15: note: consider making struct 'Keys' conform to the 'Sendable' protocol
public struct Keys: RawRepresentable {
              ^
                                    , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/WebDriver/Keys.swift:92:23: note: annotate 'add' with '@MainActor' if property should only be accessed from the main actor
    public static let add = Self(rawValue: "\u{E025}")
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/WebDriver/Keys.swift:92:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static let add = Self(rawValue: "\u{E025}")
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/WebDriver/Keys.swift:93:23: warning: static property 'separator' is not concurrency-safe because non-'Sendable' type 'Keys' may have shared mutable state; this is an error in the Swift 6 language mode
    public static let separator = Self(rawValue: "\u{E026}")
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/WebDriver/Keys.swift:2:15: note: consider making struct 'Keys' conform to the 'Sendable' protocol
public struct Keys: RawRepresentable {
              ^
                                    , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/WebDriver/Keys.swift:93:23: note: annotate 'separator' with '@MainActor' if property should only be accessed from the main actor
    public static let separator = Self(rawValue: "\u{E026}")
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/WebDriver/Keys.swift:93:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static let separator = Self(rawValue: "\u{E026}")
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/WebDriver/Keys.swift:94:23: warning: static property 'subtract' is not concurrency-safe because non-'Sendable' type 'Keys' may have shared mutable state; this is an error in the Swift 6 language mode
    public static let subtract = Self(rawValue: "\u{E027}")
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/WebDriver/Keys.swift:2:15: note: consider making struct 'Keys' conform to the 'Sendable' protocol
public struct Keys: RawRepresentable {
              ^
                                    , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/WebDriver/Keys.swift:94:23: note: annotate 'subtract' with '@MainActor' if property should only be accessed from the main actor
    public static let subtract = Self(rawValue: "\u{E027}")
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/WebDriver/Keys.swift:94:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static let subtract = Self(rawValue: "\u{E027}")
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/WebDriver/Keys.swift:95:23: warning: static property 'decimal' is not concurrency-safe because non-'Sendable' type 'Keys' may have shared mutable state; this is an error in the Swift 6 language mode
    public static let decimal = Self(rawValue: "\u{E028}")
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/WebDriver/Keys.swift:2:15: note: consider making struct 'Keys' conform to the 'Sendable' protocol
public struct Keys: RawRepresentable {
              ^
                                    , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/WebDriver/Keys.swift:95:23: note: annotate 'decimal' with '@MainActor' if property should only be accessed from the main actor
    public static let decimal = Self(rawValue: "\u{E028}")
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/WebDriver/Keys.swift:95:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static let decimal = Self(rawValue: "\u{E028}")
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/WebDriver/Keys.swift:96:23: warning: static property 'divide' is not concurrency-safe because non-'Sendable' type 'Keys' may have shared mutable state; this is an error in the Swift 6 language mode
    public static let divide = Self(rawValue: "\u{E029}")
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/WebDriver/Keys.swift:2:15: note: consider making struct 'Keys' conform to the 'Sendable' protocol
public struct Keys: RawRepresentable {
              ^
                                    , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/WebDriver/Keys.swift:96:23: note: annotate 'divide' with '@MainActor' if property should only be accessed from the main actor
    public static let divide = Self(rawValue: "\u{E029}")
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/WebDriver/Keys.swift:96:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static let divide = Self(rawValue: "\u{E029}")
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/WebDriver/Keys.swift:97:23: warning: static property 'f1' is not concurrency-safe because non-'Sendable' type 'Keys' may have shared mutable state; this is an error in the Swift 6 language mode
    public static let f1 = Self(rawValue: "\u{E031}")
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/WebDriver/Keys.swift:2:15: note: consider making struct 'Keys' conform to the 'Sendable' protocol
public struct Keys: RawRepresentable {
              ^
                                    , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/WebDriver/Keys.swift:97:23: note: annotate 'f1' with '@MainActor' if property should only be accessed from the main actor
    public static let f1 = Self(rawValue: "\u{E031}")
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/WebDriver/Keys.swift:97:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static let f1 = Self(rawValue: "\u{E031}")
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/WebDriver/Keys.swift:98:23: warning: static property 'f2' is not concurrency-safe because non-'Sendable' type 'Keys' may have shared mutable state; this is an error in the Swift 6 language mode
    public static let f2 = Self(rawValue: "\u{E032}")
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/WebDriver/Keys.swift:2:15: note: consider making struct 'Keys' conform to the 'Sendable' protocol
public struct Keys: RawRepresentable {
              ^
                                    , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/WebDriver/Keys.swift:98:23: note: annotate 'f2' with '@MainActor' if property should only be accessed from the main actor
    public static let f2 = Self(rawValue: "\u{E032}")
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/WebDriver/Keys.swift:98:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static let f2 = Self(rawValue: "\u{E032}")
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/WebDriver/Keys.swift:99:23: warning: static property 'f3' is not concurrency-safe because non-'Sendable' type 'Keys' may have shared mutable state; this is an error in the Swift 6 language mode
    public static let f3 = Self(rawValue: "\u{E033}")
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/WebDriver/Keys.swift:2:15: note: consider making struct 'Keys' conform to the 'Sendable' protocol
public struct Keys: RawRepresentable {
              ^
                                    , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/WebDriver/Keys.swift:99:23: note: annotate 'f3' with '@MainActor' if property should only be accessed from the main actor
    public static let f3 = Self(rawValue: "\u{E033}")
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/WebDriver/Keys.swift:99:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static let f3 = Self(rawValue: "\u{E033}")
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/WebDriver/Keys.swift:100:23: warning: static property 'f4' is not concurrency-safe because non-'Sendable' type 'Keys' may have shared mutable state; this is an error in the Swift 6 language mode
    public static let f4 = Self(rawValue: "\u{E034}")
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/WebDriver/Keys.swift:2:15: note: consider making struct 'Keys' conform to the 'Sendable' protocol
public struct Keys: RawRepresentable {
              ^
                                    , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/WebDriver/Keys.swift:100:23: note: annotate 'f4' with '@MainActor' if property should only be accessed from the main actor
    public static let f4 = Self(rawValue: "\u{E034}")
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/WebDriver/Keys.swift:100:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static let f4 = Self(rawValue: "\u{E034}")
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/WebDriver/Keys.swift:101:23: warning: static property 'f5' is not concurrency-safe because non-'Sendable' type 'Keys' may have shared mutable state; this is an error in the Swift 6 language mode
    public static let f5 = Self(rawValue: "\u{E035}")
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/WebDriver/Keys.swift:2:15: note: consider making struct 'Keys' conform to the 'Sendable' protocol
public struct Keys: RawRepresentable {
              ^
                                    , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/WebDriver/Keys.swift:101:23: note: annotate 'f5' with '@MainActor' if property should only be accessed from the main actor
    public static let f5 = Self(rawValue: "\u{E035}")
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/WebDriver/Keys.swift:101:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static let f5 = Self(rawValue: "\u{E035}")
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/WebDriver/Keys.swift:102:23: warning: static property 'f6' is not concurrency-safe because non-'Sendable' type 'Keys' may have shared mutable state; this is an error in the Swift 6 language mode
    public static let f6 = Self(rawValue: "\u{E036}")
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/WebDriver/Keys.swift:2:15: note: consider making struct 'Keys' conform to the 'Sendable' protocol
public struct Keys: RawRepresentable {
              ^
                                    , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/WebDriver/Keys.swift:102:23: note: annotate 'f6' with '@MainActor' if property should only be accessed from the main actor
    public static let f6 = Self(rawValue: "\u{E036}")
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/WebDriver/Keys.swift:102:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static let f6 = Self(rawValue: "\u{E036}")
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/WebDriver/Keys.swift:103:23: warning: static property 'f7' is not concurrency-safe because non-'Sendable' type 'Keys' may have shared mutable state; this is an error in the Swift 6 language mode
    public static let f7 = Self(rawValue: "\u{E037}")
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/WebDriver/Keys.swift:2:15: note: consider making struct 'Keys' conform to the 'Sendable' protocol
public struct Keys: RawRepresentable {
              ^
                                    , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/WebDriver/Keys.swift:103:23: note: annotate 'f7' with '@MainActor' if property should only be accessed from the main actor
    public static let f7 = Self(rawValue: "\u{E037}")
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/WebDriver/Keys.swift:103:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static let f7 = Self(rawValue: "\u{E037}")
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/WebDriver/Keys.swift:104:23: warning: static property 'f8' is not concurrency-safe because non-'Sendable' type 'Keys' may have shared mutable state; this is an error in the Swift 6 language mode
    public static let f8 = Self(rawValue: "\u{E038}")
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/WebDriver/Keys.swift:2:15: note: consider making struct 'Keys' conform to the 'Sendable' protocol
public struct Keys: RawRepresentable {
              ^
                                    , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/WebDriver/Keys.swift:104:23: note: annotate 'f8' with '@MainActor' if property should only be accessed from the main actor
    public static let f8 = Self(rawValue: "\u{E038}")
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/WebDriver/Keys.swift:104:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static let f8 = Self(rawValue: "\u{E038}")
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/WebDriver/Keys.swift:105:23: warning: static property 'f9' is not concurrency-safe because non-'Sendable' type 'Keys' may have shared mutable state; this is an error in the Swift 6 language mode
    public static let f9 = Self(rawValue: "\u{E039}")
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/WebDriver/Keys.swift:2:15: note: consider making struct 'Keys' conform to the 'Sendable' protocol
public struct Keys: RawRepresentable {
              ^
                                    , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/WebDriver/Keys.swift:105:23: note: annotate 'f9' with '@MainActor' if property should only be accessed from the main actor
    public static let f9 = Self(rawValue: "\u{E039}")
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/WebDriver/Keys.swift:105:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static let f9 = Self(rawValue: "\u{E039}")
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/WebDriver/Keys.swift:106:23: warning: static property 'f10' is not concurrency-safe because non-'Sendable' type 'Keys' may have shared mutable state; this is an error in the Swift 6 language mode
    public static let f10 = Self(rawValue: "\u{E03A}")
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/WebDriver/Keys.swift:2:15: note: consider making struct 'Keys' conform to the 'Sendable' protocol
public struct Keys: RawRepresentable {
              ^
                                    , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/WebDriver/Keys.swift:106:23: note: annotate 'f10' with '@MainActor' if property should only be accessed from the main actor
    public static let f10 = Self(rawValue: "\u{E03A}")
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/WebDriver/Keys.swift:106:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static let f10 = Self(rawValue: "\u{E03A}")
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/WebDriver/Keys.swift:107:23: warning: static property 'f11' is not concurrency-safe because non-'Sendable' type 'Keys' may have shared mutable state; this is an error in the Swift 6 language mode
    public static let f11 = Self(rawValue: "\u{E03B}")
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/WebDriver/Keys.swift:2:15: note: consider making struct 'Keys' conform to the 'Sendable' protocol
public struct Keys: RawRepresentable {
              ^
                                    , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/WebDriver/Keys.swift:107:23: note: annotate 'f11' with '@MainActor' if property should only be accessed from the main actor
    public static let f11 = Self(rawValue: "\u{E03B}")
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/WebDriver/Keys.swift:107:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static let f11 = Self(rawValue: "\u{E03B}")
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/WebDriver/Keys.swift:108:23: warning: static property 'f12' is not concurrency-safe because non-'Sendable' type 'Keys' may have shared mutable state; this is an error in the Swift 6 language mode
    public static let f12 = Self(rawValue: "\u{E03C}")
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/WebDriver/Keys.swift:2:15: note: consider making struct 'Keys' conform to the 'Sendable' protocol
public struct Keys: RawRepresentable {
              ^
                                    , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/WebDriver/Keys.swift:108:23: note: annotate 'f12' with '@MainActor' if property should only be accessed from the main actor
    public static let f12 = Self(rawValue: "\u{E03C}")
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/WebDriver/Keys.swift:108:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static let f12 = Self(rawValue: "\u{E03C}")
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/WebDriver/Keys.swift:111:23: warning: static property 'shiftModifier' is not concurrency-safe because non-'Sendable' type 'Keys' may have shared mutable state; this is an error in the Swift 6 language mode
    public static let shiftModifier = Keys(rawValue: "\u{E008}")
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/WebDriver/Keys.swift:2:15: note: consider making struct 'Keys' conform to the 'Sendable' protocol
public struct Keys: RawRepresentable {
              ^
                                    , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/WebDriver/Keys.swift:111:23: note: annotate 'shiftModifier' with '@MainActor' if property should only be accessed from the main actor
    public static let shiftModifier = Keys(rawValue: "\u{E008}")
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/WebDriver/Keys.swift:111:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static let shiftModifier = Keys(rawValue: "\u{E008}")
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/WebDriver/Keys.swift:112:23: warning: static property 'controlModifier' is not concurrency-safe because non-'Sendable' type 'Keys' may have shared mutable state; this is an error in the Swift 6 language mode
    public static let controlModifier = Keys(rawValue: "\u{E009}")
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/WebDriver/Keys.swift:2:15: note: consider making struct 'Keys' conform to the 'Sendable' protocol
public struct Keys: RawRepresentable {
              ^
                                    , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/WebDriver/Keys.swift:112:23: note: annotate 'controlModifier' with '@MainActor' if property should only be accessed from the main actor
    public static let controlModifier = Keys(rawValue: "\u{E009}")
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/WebDriver/Keys.swift:112:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static let controlModifier = Keys(rawValue: "\u{E009}")
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/WebDriver/Keys.swift:113:23: warning: static property 'altModifier' is not concurrency-safe because non-'Sendable' type 'Keys' may have shared mutable state; this is an error in the Swift 6 language mode
    public static let altModifier = Keys(rawValue: "\u{E00A}")
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/WebDriver/Keys.swift:2:15: note: consider making struct 'Keys' conform to the 'Sendable' protocol
public struct Keys: RawRepresentable {
              ^
                                    , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/WebDriver/Keys.swift:113:23: note: annotate 'altModifier' with '@MainActor' if property should only be accessed from the main actor
    public static let altModifier = Keys(rawValue: "\u{E00A}")
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/WebDriver/Keys.swift:113:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static let altModifier = Keys(rawValue: "\u{E00A}")
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/WebDriver/Keys.swift:114:23: warning: static property 'metaModifier' is not concurrency-safe because non-'Sendable' type 'Keys' may have shared mutable state; this is an error in the Swift 6 language mode
    public static let metaModifier = Keys(rawValue: "\u{E03D}")
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/WebDriver/Keys.swift:2:15: note: consider making struct 'Keys' conform to the 'Sendable' protocol
public struct Keys: RawRepresentable {
              ^
                                    , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/WebDriver/Keys.swift:114:23: note: annotate 'metaModifier' with '@MainActor' if property should only be accessed from the main actor
    public static let metaModifier = Keys(rawValue: "\u{E03D}")
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/WebDriver/Keys.swift:114:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static let metaModifier = Keys(rawValue: "\u{E03D}")
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/WebDriver/Keys.swift:121:23: warning: static property 'releaseModifiers' is not concurrency-safe because non-'Sendable' type 'Keys' may have shared mutable state; this is an error in the Swift 6 language mode
    public static let releaseModifiers = Keys(rawValue: "\u{E000}")
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/WebDriver/Keys.swift:2:15: note: consider making struct 'Keys' conform to the 'Sendable' protocol
public struct Keys: RawRepresentable {
              ^
                                    , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/WebDriver/Keys.swift:121:23: note: annotate 'releaseModifiers' with '@MainActor' if property should only be accessed from the main actor
    public static let releaseModifiers = Keys(rawValue: "\u{E000}")
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/WebDriver/Keys.swift:121:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static let releaseModifiers = Keys(rawValue: "\u{E000}")
                      ^
    nonisolated(unsafe)
SwiftDriverJobDiscovery normal armv7k Compiling Location.swift, MouseButton.swift (in target 'WebDriver' from project 'swift-webdriver')
SwiftDriverJobDiscovery normal arm64 Compiling NoSuchElementError.swift, Poll.swift (in target 'WebDriver' from project 'swift-webdriver')
SwiftCompile normal armv7k Compiling\ ElementLocator.swift,\ ErrorResponse.swift /Users/admin/builder/spi-builder-workspace/Sources/WebDriver/ElementLocator.swift /Users/admin/builder/spi-builder-workspace/Sources/WebDriver/ErrorResponse.swift (in target 'WebDriver' from project 'swift-webdriver')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
    builtin-swiftTaskExecution -- /Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/swift-frontend -frontend -c /Users/admin/builder/spi-builder-workspace/Sources/WebDriver/Capabilities.swift /Users/admin/builder/spi-builder-workspace/Sources/WebDriver/Element.swift -primary-file /Users/admin/builder/spi-builder-workspace/Sources/WebDriver/ElementLocator.swift -primary-file /Users/admin/builder/spi-builder-workspace/Sources/WebDriver/ErrorResponse.swift /Users/admin/builder/spi-builder-workspace/Sources/WebDriver/HTTPWebDriver.swift /Users/admin/builder/spi-builder-workspace/Sources/WebDriver/Keys.swift /Users/admin/builder/spi-builder-workspace/Sources/WebDriver/Location.swift /Users/admin/builder/spi-builder-workspace/Sources/WebDriver/MouseButton.swift /Users/admin/builder/spi-builder-workspace/Sources/WebDriver/NoSuchElementError.swift /Users/admin/builder/spi-builder-workspace/Sources/WebDriver/Poll.swift /Users/admin/builder/spi-builder-workspace/Sources/WebDriver/Request.swift /Users/admin/builder/spi-builder-workspace/Sources/WebDriver/Requests.swift /Users/admin/builder/spi-builder-workspace/Sources/WebDriver/ScreenOrientation.swift /Users/admin/builder/spi-builder-workspace/Sources/WebDriver/Session.swift /Users/admin/builder/spi-builder-workspace/Sources/WebDriver/TimeoutType.swift /Users/admin/builder/spi-builder-workspace/Sources/WebDriver/TouchClickKind.swift /Users/admin/builder/spi-builder-workspace/Sources/WebDriver/URLRequestExtensions.swift /Users/admin/builder/spi-builder-workspace/Sources/WebDriver/WebDriver.swift /Users/admin/builder/spi-builder-workspace/Sources/WebDriver/WebDriverStatus.swift /Users/admin/builder/spi-builder-workspace/Sources/WebDriver/Window.swift -emit-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-webdriver.build/Debug-watchos/WebDriver.build/Objects-normal/armv7k/ElementLocator.d -emit-const-values-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-webdriver.build/Debug-watchos/WebDriver.build/Objects-normal/armv7k/ElementLocator.swiftconstvalues -emit-reference-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-webdriver.build/Debug-watchos/WebDriver.build/Objects-normal/armv7k/ElementLocator.swiftdeps -serialize-diagnostics-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-webdriver.build/Debug-watchos/WebDriver.build/Objects-normal/armv7k/ElementLocator.dia -emit-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-webdriver.build/Debug-watchos/WebDriver.build/Objects-normal/armv7k/ErrorResponse.d -emit-const-values-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-webdriver.build/Debug-watchos/WebDriver.build/Objects-normal/armv7k/ErrorResponse.swiftconstvalues -emit-reference-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-webdriver.build/Debug-watchos/WebDriver.build/Objects-normal/armv7k/ErrorResponse.swiftdeps -serialize-diagnostics-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-webdriver.build/Debug-watchos/WebDriver.build/Objects-normal/armv7k/ErrorResponse.dia -target armv7k-apple-watchos5.0 -enable-objc-interop -sdk /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS11.1.sdk -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -I /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -F /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/Library/Frameworks -F /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS11.1.sdk/Developer/Library/Frameworks -no-color-diagnostics -enable-testing -g -debug-info-format\=dwarf -dwarf-version\=4 -module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -profile-generate -profile-coverage-mapping -swift-version 5 -enforce-exclusivity\=checked -stats-output-dir /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode/.stats -Onone -D SWIFT_PACKAGE -D DEBUG -serialize-debugging-options -const-gather-protocols-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-webdriver.build/Debug-watchos/WebDriver.build/Objects-normal/armv7k/WebDriver_const_extract_protocols.json -enable-experimental-feature DebugDescriptionMacro -enable-experimental-feature OpaqueTypeErasure -strict-concurrency\=complete -empty-abi-descriptor -plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/plugins/testing -validate-clang-modules-once -clang-build-session-file /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex/Session.modulevalidation -Xcc -working-directory -Xcc /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode -resource-dir /Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift -enable-anonymous-context-mangled-names -file-compilation-dir /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode -Xcc -D_LIBCPP_HARDENING_MODE\=_LIBCPP_HARDENING_MODE_DEBUG -Xcc -ivfsstatcache -Xcc /Users/admin/builder/spi-builder-workspace/.derivedData/SDKStatCaches.noindex/watchos11.1-22R574-7b9df0bda16bb4641b33636c68f04660.sdkstatcache -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-webdriver.build/Debug-watchos/WebDriver.build/swift-overrides.hmap -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-webdriver.build/Debug-watchos/WebDriver.build/DerivedSources-normal/armv7k -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-webdriver.build/Debug-watchos/WebDriver.build/DerivedSources/armv7k -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-webdriver.build/Debug-watchos/WebDriver.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -module-name WebDriver -frontend-parseable-output -disable-clang-spi -target-sdk-version 11.1 -target-sdk-name watchos11.1 -external-plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/lib/swift/host/plugins\#/Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/local/lib/swift/host/plugins\#/Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/bin/swift-plugin-server -plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/plugins -plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/local/lib/swift/host/plugins -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-webdriver.build/Debug-watchos/WebDriver.build/Objects-normal/armv7k/ElementLocator.o -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-webdriver.build/Debug-watchos/WebDriver.build/Objects-normal/armv7k/ErrorResponse.o -index-unit-output-path /swift-webdriver.build/Debug-watchos/WebDriver.build/Objects-normal/armv7k/ElementLocator.o -index-unit-output-path /swift-webdriver.build/Debug-watchos/WebDriver.build/Objects-normal/armv7k/ErrorResponse.o -index-store-path /Users/admin/builder/spi-builder-workspace/.derivedData/Index.noindex/DataStore -index-system-modules
SwiftCompile normal armv7k /Users/admin/builder/spi-builder-workspace/Sources/WebDriver/ElementLocator.swift (in target 'WebDriver' from project 'swift-webdriver')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
    /Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/swift-frontend -c /Users/admin/builder/spi-builder-workspace/Sources/WebDriver/Capabilities.swift /Users/admin/builder/spi-builder-workspace/Sources/WebDriver/Element.swift -primary-file /Users/admin/builder/spi-builder-workspace/Sources/WebDriver/ElementLocator.swift -primary-file /Users/admin/builder/spi-builder-workspace/Sources/WebDriver/ErrorResponse.swift /Users/admin/builder/spi-builder-workspace/Sources/WebDriver/HTTPWebDriver.swift /Users/admin/builder/spi-builder-workspace/Sources/WebDriver/Keys.swift /Users/admin/builder/spi-builder-workspace/Sources/WebDriver/Location.swift /Users/admin/builder/spi-builder-workspace/Sources/WebDriver/MouseButton.swift /Users/admin/builder/spi-builder-workspace/Sources/WebDriver/NoSuchElementError.swift /Users/admin/builder/spi-builder-workspace/Sources/WebDriver/Poll.swift /Users/admin/builder/spi-builder-workspace/Sources/WebDriver/Request.swift /Users/admin/builder/spi-builder-workspace/Sources/WebDriver/Requests.swift /Users/admin/builder/spi-builder-workspace/Sources/WebDriver/ScreenOrientation.swift /Users/admin/builder/spi-builder-workspace/Sources/WebDriver/Session.swift /Users/admin/builder/spi-builder-workspace/Sources/WebDriver/TimeoutType.swift /Users/admin/builder/spi-builder-workspace/Sources/WebDriver/TouchClickKind.swift /Users/admin/builder/spi-builder-workspace/Sources/WebDriver/URLRequestExtensions.swift /Users/admin/builder/spi-builder-workspace/Sources/WebDriver/WebDriver.swift /Users/admin/builder/spi-builder-workspace/Sources/WebDriver/WebDriverStatus.swift /Users/admin/builder/spi-builder-workspace/Sources/WebDriver/Window.swift -emit-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-webdriver.build/Debug-watchos/WebDriver.build/Objects-normal/armv7k/ElementLocator.d -emit-const-values-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-webdriver.build/Debug-watchos/WebDriver.build/Objects-normal/armv7k/ElementLocator.swiftconstvalues -emit-reference-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-webdriver.build/Debug-watchos/WebDriver.build/Objects-normal/armv7k/ElementLocator.swiftdeps -serialize-diagnostics-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-webdriver.build/Debug-watchos/WebDriver.build/Objects-normal/armv7k/ElementLocator.dia -emit-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-webdriver.build/Debug-watchos/WebDriver.build/Objects-normal/armv7k/ErrorResponse.d -emit-const-values-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-webdriver.build/Debug-watchos/WebDriver.build/Objects-normal/armv7k/ErrorResponse.swiftconstvalues -emit-reference-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-webdriver.build/Debug-watchos/WebDriver.build/Objects-normal/armv7k/ErrorResponse.swiftdeps -serialize-diagnostics-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-webdriver.build/Debug-watchos/WebDriver.build/Objects-normal/armv7k/ErrorResponse.dia -target armv7k-apple-watchos5.0 -enable-objc-interop -sdk /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS11.1.sdk -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -I /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -F /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/Library/Frameworks -F /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS11.1.sdk/Developer/Library/Frameworks -no-color-diagnostics -enable-testing -g -debug-info-format\=dwarf -dwarf-version\=4 -module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -profile-generate -profile-coverage-mapping -swift-version 5 -enforce-exclusivity\=checked -stats-output-dir /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode/.stats -Onone -D SWIFT_PACKAGE -D DEBUG -serialize-debugging-options -const-gather-protocols-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-webdriver.build/Debug-watchos/WebDriver.build/Objects-normal/armv7k/WebDriver_const_extract_protocols.json -enable-experimental-feature DebugDescriptionMacro -enable-experimental-feature OpaqueTypeErasure -strict-concurrency\=complete -empty-abi-descriptor -plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/plugins/testing -validate-clang-modules-once -clang-build-session-file /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex/Session.modulevalidation -Xcc -working-directory -Xcc /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode -resource-dir /Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift -enable-anonymous-context-mangled-names -file-compilation-dir /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode -Xcc -D_LIBCPP_HARDENING_MODE\=_LIBCPP_HARDENING_MODE_DEBUG -Xcc -ivfsstatcache -Xcc /Users/admin/builder/spi-builder-workspace/.derivedData/SDKStatCaches.noindex/watchos11.1-22R574-7b9df0bda16bb4641b33636c68f04660.sdkstatcache -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-webdriver.build/Debug-watchos/WebDriver.build/swift-overrides.hmap -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-webdriver.build/Debug-watchos/WebDriver.build/DerivedSources-normal/armv7k -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-webdriver.build/Debug-watchos/WebDriver.build/DerivedSources/armv7k -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-webdriver.build/Debug-watchos/WebDriver.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -module-name WebDriver -frontend-parseable-output -disable-clang-spi -target-sdk-version 11.1 -target-sdk-name watchos11.1 -external-plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/lib/swift/host/plugins\#/Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/local/lib/swift/host/plugins\#/Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/bin/swift-plugin-server -plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/plugins -plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/local/lib/swift/host/plugins -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-webdriver.build/Debug-watchos/WebDriver.build/Objects-normal/armv7k/ElementLocator.o -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-webdriver.build/Debug-watchos/WebDriver.build/Objects-normal/armv7k/ErrorResponse.o -index-unit-output-path /swift-webdriver.build/Debug-watchos/WebDriver.build/Objects-normal/armv7k/ElementLocator.o -index-unit-output-path /swift-webdriver.build/Debug-watchos/WebDriver.build/Objects-normal/armv7k/ErrorResponse.o -index-store-path /Users/admin/builder/spi-builder-workspace/.derivedData/Index.noindex/DataStore -index-system-modules
SwiftCompile normal armv7k /Users/admin/builder/spi-builder-workspace/Sources/WebDriver/ErrorResponse.swift (in target 'WebDriver' from project 'swift-webdriver')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
    /Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/swift-frontend -c /Users/admin/builder/spi-builder-workspace/Sources/WebDriver/Capabilities.swift /Users/admin/builder/spi-builder-workspace/Sources/WebDriver/Element.swift -primary-file /Users/admin/builder/spi-builder-workspace/Sources/WebDriver/ElementLocator.swift -primary-file /Users/admin/builder/spi-builder-workspace/Sources/WebDriver/ErrorResponse.swift /Users/admin/builder/spi-builder-workspace/Sources/WebDriver/HTTPWebDriver.swift /Users/admin/builder/spi-builder-workspace/Sources/WebDriver/Keys.swift /Users/admin/builder/spi-builder-workspace/Sources/WebDriver/Location.swift /Users/admin/builder/spi-builder-workspace/Sources/WebDriver/MouseButton.swift /Users/admin/builder/spi-builder-workspace/Sources/WebDriver/NoSuchElementError.swift /Users/admin/builder/spi-builder-workspace/Sources/WebDriver/Poll.swift /Users/admin/builder/spi-builder-workspace/Sources/WebDriver/Request.swift /Users/admin/builder/spi-builder-workspace/Sources/WebDriver/Requests.swift /Users/admin/builder/spi-builder-workspace/Sources/WebDriver/ScreenOrientation.swift /Users/admin/builder/spi-builder-workspace/Sources/WebDriver/Session.swift /Users/admin/builder/spi-builder-workspace/Sources/WebDriver/TimeoutType.swift /Users/admin/builder/spi-builder-workspace/Sources/WebDriver/TouchClickKind.swift /Users/admin/builder/spi-builder-workspace/Sources/WebDriver/URLRequestExtensions.swift /Users/admin/builder/spi-builder-workspace/Sources/WebDriver/WebDriver.swift /Users/admin/builder/spi-builder-workspace/Sources/WebDriver/WebDriverStatus.swift /Users/admin/builder/spi-builder-workspace/Sources/WebDriver/Window.swift -emit-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-webdriver.build/Debug-watchos/WebDriver.build/Objects-normal/armv7k/ElementLocator.d -emit-const-values-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-webdriver.build/Debug-watchos/WebDriver.build/Objects-normal/armv7k/ElementLocator.swiftconstvalues -emit-reference-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-webdriver.build/Debug-watchos/WebDriver.build/Objects-normal/armv7k/ElementLocator.swiftdeps -serialize-diagnostics-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-webdriver.build/Debug-watchos/WebDriver.build/Objects-normal/armv7k/ElementLocator.dia -emit-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-webdriver.build/Debug-watchos/WebDriver.build/Objects-normal/armv7k/ErrorResponse.d -emit-const-values-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-webdriver.build/Debug-watchos/WebDriver.build/Objects-normal/armv7k/ErrorResponse.swiftconstvalues -emit-reference-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-webdriver.build/Debug-watchos/WebDriver.build/Objects-normal/armv7k/ErrorResponse.swiftdeps -serialize-diagnostics-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-webdriver.build/Debug-watchos/WebDriver.build/Objects-normal/armv7k/ErrorResponse.dia -target armv7k-apple-watchos5.0 -enable-objc-interop -sdk /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS11.1.sdk -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -I /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -F /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/Library/Frameworks -F /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS11.1.sdk/Developer/Library/Frameworks -no-color-diagnostics -enable-testing -g -debug-info-format\=dwarf -dwarf-version\=4 -module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -profile-generate -profile-coverage-mapping -swift-version 5 -enforce-exclusivity\=checked -stats-output-dir /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode/.stats -Onone -D SWIFT_PACKAGE -D DEBUG -serialize-debugging-options -const-gather-protocols-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-webdriver.build/Debug-watchos/WebDriver.build/Objects-normal/armv7k/WebDriver_const_extract_protocols.json -enable-experimental-feature DebugDescriptionMacro -enable-experimental-feature OpaqueTypeErasure -strict-concurrency\=complete -empty-abi-descriptor -plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/plugins/testing -validate-clang-modules-once -clang-build-session-file /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex/Session.modulevalidation -Xcc -working-directory -Xcc /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode -resource-dir /Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift -enable-anonymous-context-mangled-names -file-compilation-dir /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode -Xcc -D_LIBCPP_HARDENING_MODE\=_LIBCPP_HARDENING_MODE_DEBUG -Xcc -ivfsstatcache -Xcc /Users/admin/builder/spi-builder-workspace/.derivedData/SDKStatCaches.noindex/watchos11.1-22R574-7b9df0bda16bb4641b33636c68f04660.sdkstatcache -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-webdriver.build/Debug-watchos/WebDriver.build/swift-overrides.hmap -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-webdriver.build/Debug-watchos/WebDriver.build/DerivedSources-normal/armv7k -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-webdriver.build/Debug-watchos/WebDriver.build/DerivedSources/armv7k -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-webdriver.build/Debug-watchos/WebDriver.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -module-name WebDriver -frontend-parseable-output -disable-clang-spi -target-sdk-version 11.1 -target-sdk-name watchos11.1 -external-plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/lib/swift/host/plugins\#/Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/local/lib/swift/host/plugins\#/Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/bin/swift-plugin-server -plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/plugins -plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/local/lib/swift/host/plugins -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-webdriver.build/Debug-watchos/WebDriver.build/Objects-normal/armv7k/ElementLocator.o -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-webdriver.build/Debug-watchos/WebDriver.build/Objects-normal/armv7k/ErrorResponse.o -index-unit-output-path /swift-webdriver.build/Debug-watchos/WebDriver.build/Objects-normal/armv7k/ElementLocator.o -index-unit-output-path /swift-webdriver.build/Debug-watchos/WebDriver.build/Objects-normal/armv7k/ErrorResponse.o -index-store-path /Users/admin/builder/spi-builder-workspace/.derivedData/Index.noindex/DataStore -index-system-modules
/Users/admin/builder/spi-builder-workspace/Sources/WebDriver/ErrorResponse.swift:19:27: warning: static property 'success' is not concurrency-safe because non-'Sendable' type 'ErrorResponse.Status' may have shared mutable state; this is an error in the Swift 6 language mode
        public static let success = Self(rawValue: 0)
                          ^
/Users/admin/builder/spi-builder-workspace/Sources/WebDriver/ErrorResponse.swift:16:19: note: consider making struct 'Status' conform to the 'Sendable' protocol
    public struct Status: Codable, Hashable, RawRepresentable {
                  ^
                                                             , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/WebDriver/ErrorResponse.swift:19:27: note: annotate 'success' with '@MainActor' if property should only be accessed from the main actor
        public static let success = Self(rawValue: 0)
                          ^
        @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/WebDriver/ErrorResponse.swift:19:27: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
        public static let success = Self(rawValue: 0)
                          ^
        nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/WebDriver/ErrorResponse.swift:20:27: warning: static property 'noSuchDriver' is not concurrency-safe because non-'Sendable' type 'ErrorResponse.Status' may have shared mutable state; this is an error in the Swift 6 language mode
        public static let noSuchDriver = Self(rawValue: 6)
                          ^
/Users/admin/builder/spi-builder-workspace/Sources/WebDriver/ErrorResponse.swift:16:19: note: consider making struct 'Status' conform to the 'Sendable' protocol
    public struct Status: Codable, Hashable, RawRepresentable {
                  ^
                                                             , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/WebDriver/ErrorResponse.swift:20:27: note: annotate 'noSuchDriver' with '@MainActor' if property should only be accessed from the main actor
        public static let noSuchDriver = Self(rawValue: 6)
                          ^
        @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/WebDriver/ErrorResponse.swift:20:27: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
        public static let noSuchDriver = Self(rawValue: 6)
                          ^
        nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/WebDriver/ErrorResponse.swift:21:27: warning: static property 'noSuchElement' is not concurrency-safe because non-'Sendable' type 'ErrorResponse.Status' may have shared mutable state; this is an error in the Swift 6 language mode
        public static let noSuchElement = Self(rawValue: 7)
                          ^
/Users/admin/builder/spi-builder-workspace/Sources/WebDriver/ErrorResponse.swift:16:19: note: consider making struct 'Status' conform to the 'Sendable' protocol
    public struct Status: Codable, Hashable, RawRepresentable {
                  ^
                                                             , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/WebDriver/ErrorResponse.swift:21:27: note: annotate 'noSuchElement' with '@MainActor' if property should only be accessed from the main actor
        public static let noSuchElement = Self(rawValue: 7)
                          ^
        @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/WebDriver/ErrorResponse.swift:21:27: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
        public static let noSuchElement = Self(rawValue: 7)
                          ^
        nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/WebDriver/ErrorResponse.swift:22:27: warning: static property 'noSuchFrame' is not concurrency-safe because non-'Sendable' type 'ErrorResponse.Status' may have shared mutable state; this is an error in the Swift 6 language mode
        public static let noSuchFrame = Self(rawValue: 8)
                          ^
/Users/admin/builder/spi-builder-workspace/Sources/WebDriver/ErrorResponse.swift:16:19: note: consider making struct 'Status' conform to the 'Sendable' protocol
    public struct Status: Codable, Hashable, RawRepresentable {
                  ^
                                                             , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/WebDriver/ErrorResponse.swift:22:27: note: annotate 'noSuchFrame' with '@MainActor' if property should only be accessed from the main actor
        public static let noSuchFrame = Self(rawValue: 8)
                          ^
        @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/WebDriver/ErrorResponse.swift:22:27: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
        public static let noSuchFrame = Self(rawValue: 8)
                          ^
        nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/WebDriver/ErrorResponse.swift:23:27: warning: static property 'unknownCommand' is not concurrency-safe because non-'Sendable' type 'ErrorResponse.Status' may have shared mutable state; this is an error in the Swift 6 language mode
        public static let unknownCommand = Self(rawValue: 9)
                          ^
/Users/admin/builder/spi-builder-workspace/Sources/WebDriver/ErrorResponse.swift:16:19: note: consider making struct 'Status' conform to the 'Sendable' protocol
    public struct Status: Codable, Hashable, RawRepresentable {
                  ^
                                                             , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/WebDriver/ErrorResponse.swift:23:27: note: annotate 'unknownCommand' with '@MainActor' if property should only be accessed from the main actor
        public static let unknownCommand = Self(rawValue: 9)
                          ^
        @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/WebDriver/ErrorResponse.swift:23:27: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
        public static let unknownCommand = Self(rawValue: 9)
                          ^
        nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/WebDriver/ErrorResponse.swift:24:27: warning: static property 'staleElementReference' is not concurrency-safe because non-'Sendable' type 'ErrorResponse.Status' may have shared mutable state; this is an error in the Swift 6 language mode
        public static let staleElementReference = Self(rawValue: 10)
                          ^
/Users/admin/builder/spi-builder-workspace/Sources/WebDriver/ErrorResponse.swift:16:19: note: consider making struct 'Status' conform to the 'Sendable' protocol
    public struct Status: Codable, Hashable, RawRepresentable {
                  ^
                                                             , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/WebDriver/ErrorResponse.swift:24:27: note: annotate 'staleElementReference' with '@MainActor' if property should only be accessed from the main actor
        public static let staleElementReference = Self(rawValue: 10)
                          ^
        @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/WebDriver/ErrorResponse.swift:24:27: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
        public static let staleElementReference = Self(rawValue: 10)
                          ^
        nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/WebDriver/ErrorResponse.swift:25:27: warning: static property 'elementNotVisible' is not concurrency-safe because non-'Sendable' type 'ErrorResponse.Status' may have shared mutable state; this is an error in the Swift 6 language mode
        public static let elementNotVisible = Self(rawValue: 11)
                          ^
/Users/admin/builder/spi-builder-workspace/Sources/WebDriver/ErrorResponse.swift:16:19: note: consider making struct 'Status' conform to the 'Sendable' protocol
    public struct Status: Codable, Hashable, RawRepresentable {
                  ^
                                                             , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/WebDriver/ErrorResponse.swift:25:27: note: annotate 'elementNotVisible' with '@MainActor' if property should only be accessed from the main actor
        public static let elementNotVisible = Self(rawValue: 11)
                          ^
        @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/WebDriver/ErrorResponse.swift:25:27: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
        public static let elementNotVisible = Self(rawValue: 11)
                          ^
        nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/WebDriver/ErrorResponse.swift:26:27: warning: static property 'invalidElementState' is not concurrency-safe because non-'Sendable' type 'ErrorResponse.Status' may have shared mutable state; this is an error in the Swift 6 language mode
        public static let invalidElementState = Self(rawValue: 12)
                          ^
/Users/admin/builder/spi-builder-workspace/Sources/WebDriver/ErrorResponse.swift:16:19: note: consider making struct 'Status' conform to the 'Sendable' protocol
    public struct Status: Codable, Hashable, RawRepresentable {
                  ^
                                                             , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/WebDriver/ErrorResponse.swift:26:27: note: annotate 'invalidElementState' with '@MainActor' if property should only be accessed from the main actor
        public static let invalidElementState = Self(rawValue: 12)
                          ^
        @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/WebDriver/ErrorResponse.swift:26:27: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
        public static let invalidElementState = Self(rawValue: 12)
                          ^
        nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/WebDriver/ErrorResponse.swift:27:27: warning: static property 'unknownError' is not concurrency-safe because non-'Sendable' type 'ErrorResponse.Status' may have shared mutable state; this is an error in the Swift 6 language mode
        public static let unknownError = Self(rawValue: 13)
                          ^
/Users/admin/builder/spi-builder-workspace/Sources/WebDriver/ErrorResponse.swift:16:19: note: consider making struct 'Status' conform to the 'Sendable' protocol
    public struct Status: Codable, Hashable, RawRepresentable {
                  ^
                                                             , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/WebDriver/ErrorResponse.swift:27:27: note: annotate 'unknownError' with '@MainActor' if property should only be accessed from the main actor
        public static let unknownError = Self(rawValue: 13)
                          ^
        @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/WebDriver/ErrorResponse.swift:27:27: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
        public static let unknownError = Self(rawValue: 13)
                          ^
        nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/WebDriver/ErrorResponse.swift:28:27: warning: static property 'elementIsNotSelectable' is not concurrency-safe because non-'Sendable' type 'ErrorResponse.Status' may have shared mutable state; this is an error in the Swift 6 language mode
        public static let elementIsNotSelectable = Self(rawValue: 15)
                          ^
/Users/admin/builder/spi-builder-workspace/Sources/WebDriver/ErrorResponse.swift:16:19: note: consider making struct 'Status' conform to the 'Sendable' protocol
    public struct Status: Codable, Hashable, RawRepresentable {
                  ^
                                                             , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/WebDriver/ErrorResponse.swift:28:27: note: annotate 'elementIsNotSelectable' with '@MainActor' if property should only be accessed from the main actor
        public static let elementIsNotSelectable = Self(rawValue: 15)
                          ^
        @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/WebDriver/ErrorResponse.swift:28:27: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
        public static let elementIsNotSelectable = Self(rawValue: 15)
                          ^
        nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/WebDriver/ErrorResponse.swift:29:27: warning: static property 'javaScriptError' is not concurrency-safe because non-'Sendable' type 'ErrorResponse.Status' may have shared mutable state; this is an error in the Swift 6 language mode
        public static let javaScriptError = Self(rawValue: 17)
                          ^
/Users/admin/builder/spi-builder-workspace/Sources/WebDriver/ErrorResponse.swift:16:19: note: consider making struct 'Status' conform to the 'Sendable' protocol
    public struct Status: Codable, Hashable, RawRepresentable {
                  ^
                                                             , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/WebDriver/ErrorResponse.swift:29:27: note: annotate 'javaScriptError' with '@MainActor' if property should only be accessed from the main actor
        public static let javaScriptError = Self(rawValue: 17)
                          ^
        @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/WebDriver/ErrorResponse.swift:29:27: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
        public static let javaScriptError = Self(rawValue: 17)
                          ^
        nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/WebDriver/ErrorResponse.swift:30:27: warning: static property 'xPathLookupError' is not concurrency-safe because non-'Sendable' type 'ErrorResponse.Status' may have shared mutable state; this is an error in the Swift 6 language mode
        public static let xPathLookupError = Self(rawValue: 19)
                          ^
/Users/admin/builder/spi-builder-workspace/Sources/WebDriver/ErrorResponse.swift:16:19: note: consider making struct 'Status' conform to the 'Sendable' protocol
    public struct Status: Codable, Hashable, RawRepresentable {
                  ^
                                                             , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/WebDriver/ErrorResponse.swift:30:27: note: annotate 'xPathLookupError' with '@MainActor' if property should only be accessed from the main actor
        public static let xPathLookupError = Self(rawValue: 19)
                          ^
        @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/WebDriver/ErrorResponse.swift:30:27: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
        public static let xPathLookupError = Self(rawValue: 19)
                          ^
        nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/WebDriver/ErrorResponse.swift:31:27: warning: static property 'timeout' is not concurrency-safe because non-'Sendable' type 'ErrorResponse.Status' may have shared mutable state; this is an error in the Swift 6 language mode
        public static let timeout = Self(rawValue: 21)
                          ^
/Users/admin/builder/spi-builder-workspace/Sources/WebDriver/ErrorResponse.swift:16:19: note: consider making struct 'Status' conform to the 'Sendable' protocol
    public struct Status: Codable, Hashable, RawRepresentable {
                  ^
                                                             , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/WebDriver/ErrorResponse.swift:31:27: note: annotate 'timeout' with '@MainActor' if property should only be accessed from the main actor
        public static let timeout = Self(rawValue: 21)
                          ^
        @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/WebDriver/ErrorResponse.swift:31:27: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
        public static let timeout = Self(rawValue: 21)
                          ^
        nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/WebDriver/ErrorResponse.swift:32:27: warning: static property 'noSuchWindow' is not concurrency-safe because non-'Sendable' type 'ErrorResponse.Status' may have shared mutable state; this is an error in the Swift 6 language mode
        public static let noSuchWindow = Self(rawValue: 23)
                          ^
/Users/admin/builder/spi-builder-workspace/Sources/WebDriver/ErrorResponse.swift:16:19: note: consider making struct 'Status' conform to the 'Sendable' protocol
    public struct Status: Codable, Hashable, RawRepresentable {
                  ^
                                                             , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/WebDriver/ErrorResponse.swift:32:27: note: annotate 'noSuchWindow' with '@MainActor' if property should only be accessed from the main actor
        public static let noSuchWindow = Self(rawValue: 23)
                          ^
        @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/WebDriver/ErrorResponse.swift:32:27: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
        public static let noSuchWindow = Self(rawValue: 23)
                          ^
        nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/WebDriver/ErrorResponse.swift:33:27: warning: static property 'invalidCookieDomain' is not concurrency-safe because non-'Sendable' type 'ErrorResponse.Status' may have shared mutable state; this is an error in the Swift 6 language mode
        public static let invalidCookieDomain = Self(rawValue: 24)
                          ^
/Users/admin/builder/spi-builder-workspace/Sources/WebDriver/ErrorResponse.swift:16:19: note: consider making struct 'Status' conform to the 'Sendable' protocol
    public struct Status: Codable, Hashable, RawRepresentable {
                  ^
                                                             , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/WebDriver/ErrorResponse.swift:33:27: note: annotate 'invalidCookieDomain' with '@MainActor' if property should only be accessed from the main actor
        public static let invalidCookieDomain = Self(rawValue: 24)
                          ^
        @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/WebDriver/ErrorResponse.swift:33:27: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
        public static let invalidCookieDomain = Self(rawValue: 24)
                          ^
        nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/WebDriver/ErrorResponse.swift:34:27: warning: static property 'unableToSetCookie' is not concurrency-safe because non-'Sendable' type 'ErrorResponse.Status' may have shared mutable state; this is an error in the Swift 6 language mode
        public static let unableToSetCookie = Self(rawValue: 25)
                          ^
/Users/admin/builder/spi-builder-workspace/Sources/WebDriver/ErrorResponse.swift:16:19: note: consider making struct 'Status' conform to the 'Sendable' protocol
    public struct Status: Codable, Hashable, RawRepresentable {
                  ^
                                                             , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/WebDriver/ErrorResponse.swift:34:27: note: annotate 'unableToSetCookie' with '@MainActor' if property should only be accessed from the main actor
        public static let unableToSetCookie = Self(rawValue: 25)
                          ^
        @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/WebDriver/ErrorResponse.swift:34:27: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
        public static let unableToSetCookie = Self(rawValue: 25)
                          ^
        nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/WebDriver/ErrorResponse.swift:35:27: warning: static property 'unexpectedAlertOpen' is not concurrency-safe because non-'Sendable' type 'ErrorResponse.Status' may have shared mutable state; this is an error in the Swift 6 language mode
        public static let unexpectedAlertOpen = Self(rawValue: 26)
                          ^
/Users/admin/builder/spi-builder-workspace/Sources/WebDriver/ErrorResponse.swift:16:19: note: consider making struct 'Status' conform to the 'Sendable' protocol
    public struct Status: Codable, Hashable, RawRepresentable {
                  ^
                                                             , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/WebDriver/ErrorResponse.swift:35:27: note: annotate 'unexpectedAlertOpen' with '@MainActor' if property should only be accessed from the main actor
        public static let unexpectedAlertOpen = Self(rawValue: 26)
                          ^
        @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/WebDriver/ErrorResponse.swift:35:27: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
        public static let unexpectedAlertOpen = Self(rawValue: 26)
                          ^
        nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/WebDriver/ErrorResponse.swift:36:27: warning: static property 'noAlertOpenError' is not concurrency-safe because non-'Sendable' type 'ErrorResponse.Status' may have shared mutable state; this is an error in the Swift 6 language mode
        public static let noAlertOpenError = Self(rawValue: 27)
                          ^
/Users/admin/builder/spi-builder-workspace/Sources/WebDriver/ErrorResponse.swift:16:19: note: consider making struct 'Status' conform to the 'Sendable' protocol
    public struct Status: Codable, Hashable, RawRepresentable {
                  ^
                                                             , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/WebDriver/ErrorResponse.swift:36:27: note: annotate 'noAlertOpenError' with '@MainActor' if property should only be accessed from the main actor
        public static let noAlertOpenError = Self(rawValue: 27)
                          ^
        @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/WebDriver/ErrorResponse.swift:36:27: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
        public static let noAlertOpenError = Self(rawValue: 27)
                          ^
        nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/WebDriver/ErrorResponse.swift:37:27: warning: static property 'scriptTimeout' is not concurrency-safe because non-'Sendable' type 'ErrorResponse.Status' may have shared mutable state; this is an error in the Swift 6 language mode
        public static let scriptTimeout = Self(rawValue: 28)
                          ^
/Users/admin/builder/spi-builder-workspace/Sources/WebDriver/ErrorResponse.swift:16:19: note: consider making struct 'Status' conform to the 'Sendable' protocol
    public struct Status: Codable, Hashable, RawRepresentable {
                  ^
                                                             , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/WebDriver/ErrorResponse.swift:37:27: note: annotate 'scriptTimeout' with '@MainActor' if property should only be accessed from the main actor
        public static let scriptTimeout = Self(rawValue: 28)
                          ^
        @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/WebDriver/ErrorResponse.swift:37:27: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
        public static let scriptTimeout = Self(rawValue: 28)
                          ^
        nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/WebDriver/ErrorResponse.swift:38:27: warning: static property 'invalidElementCoordinates' is not concurrency-safe because non-'Sendable' type 'ErrorResponse.Status' may have shared mutable state; this is an error in the Swift 6 language mode
        public static let invalidElementCoordinates = Self(rawValue: 29)
                          ^
/Users/admin/builder/spi-builder-workspace/Sources/WebDriver/ErrorResponse.swift:16:19: note: consider making struct 'Status' conform to the 'Sendable' protocol
    public struct Status: Codable, Hashable, RawRepresentable {
                  ^
                                                             , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/WebDriver/ErrorResponse.swift:38:27: note: annotate 'invalidElementCoordinates' with '@MainActor' if property should only be accessed from the main actor
        public static let invalidElementCoordinates = Self(rawValue: 29)
                          ^
        @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/WebDriver/ErrorResponse.swift:38:27: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
        public static let invalidElementCoordinates = Self(rawValue: 29)
                          ^
        nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/WebDriver/ErrorResponse.swift:39:27: warning: static property 'imeNotAvailable' is not concurrency-safe because non-'Sendable' type 'ErrorResponse.Status' may have shared mutable state; this is an error in the Swift 6 language mode
        public static let imeNotAvailable = Self(rawValue: 30)
                          ^
/Users/admin/builder/spi-builder-workspace/Sources/WebDriver/ErrorResponse.swift:16:19: note: consider making struct 'Status' conform to the 'Sendable' protocol
    public struct Status: Codable, Hashable, RawRepresentable {
                  ^
                                                             , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/WebDriver/ErrorResponse.swift:39:27: note: annotate 'imeNotAvailable' with '@MainActor' if property should only be accessed from the main actor
        public static let imeNotAvailable = Self(rawValue: 30)
                          ^
        @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/WebDriver/ErrorResponse.swift:39:27: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
        public static let imeNotAvailable = Self(rawValue: 30)
                          ^
        nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/WebDriver/ErrorResponse.swift:40:27: warning: static property 'imeEngineActivationFailed' is not concurrency-safe because non-'Sendable' type 'ErrorResponse.Status' may have shared mutable state; this is an error in the Swift 6 language mode
        public static let imeEngineActivationFailed = Self(rawValue: 31)
                          ^
/Users/admin/builder/spi-builder-workspace/Sources/WebDriver/ErrorResponse.swift:16:19: note: consider making struct 'Status' conform to the 'Sendable' protocol
    public struct Status: Codable, Hashable, RawRepresentable {
                  ^
                                                             , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/WebDriver/ErrorResponse.swift:40:27: note: annotate 'imeEngineActivationFailed' with '@MainActor' if property should only be accessed from the main actor
        public static let imeEngineActivationFailed = Self(rawValue: 31)
                          ^
        @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/WebDriver/ErrorResponse.swift:40:27: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
        public static let imeEngineActivationFailed = Self(rawValue: 31)
                          ^
        nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/WebDriver/ErrorResponse.swift:41:27: warning: static property 'invalidSelector' is not concurrency-safe because non-'Sendable' type 'ErrorResponse.Status' may have shared mutable state; this is an error in the Swift 6 language mode
        public static let invalidSelector = Self(rawValue: 32)
                          ^
/Users/admin/builder/spi-builder-workspace/Sources/WebDriver/ErrorResponse.swift:16:19: note: consider making struct 'Status' conform to the 'Sendable' protocol
    public struct Status: Codable, Hashable, RawRepresentable {
                  ^
                                                             , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/WebDriver/ErrorResponse.swift:41:27: note: annotate 'invalidSelector' with '@MainActor' if property should only be accessed from the main actor
        public static let invalidSelector = Self(rawValue: 32)
                          ^
        @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/WebDriver/ErrorResponse.swift:41:27: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
        public static let invalidSelector = Self(rawValue: 32)
                          ^
        nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/WebDriver/ErrorResponse.swift:42:27: warning: static property 'sessionNotCreatedException' is not concurrency-safe because non-'Sendable' type 'ErrorResponse.Status' may have shared mutable state; this is an error in the Swift 6 language mode
        public static let sessionNotCreatedException = Self(rawValue: 33)
                          ^
/Users/admin/builder/spi-builder-workspace/Sources/WebDriver/ErrorResponse.swift:16:19: note: consider making struct 'Status' conform to the 'Sendable' protocol
    public struct Status: Codable, Hashable, RawRepresentable {
                  ^
                                                             , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/WebDriver/ErrorResponse.swift:42:27: note: annotate 'sessionNotCreatedException' with '@MainActor' if property should only be accessed from the main actor
        public static let sessionNotCreatedException = Self(rawValue: 33)
                          ^
        @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/WebDriver/ErrorResponse.swift:42:27: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
        public static let sessionNotCreatedException = Self(rawValue: 33)
                          ^
        nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/WebDriver/ErrorResponse.swift:43:27: warning: static property 'moveTargetOutOfBounds' is not concurrency-safe because non-'Sendable' type 'ErrorResponse.Status' may have shared mutable state; this is an error in the Swift 6 language mode
        public static let moveTargetOutOfBounds = Self(rawValue: 34)
                          ^
/Users/admin/builder/spi-builder-workspace/Sources/WebDriver/ErrorResponse.swift:16:19: note: consider making struct 'Status' conform to the 'Sendable' protocol
    public struct Status: Codable, Hashable, RawRepresentable {
                  ^
                                                             , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/WebDriver/ErrorResponse.swift:43:27: note: annotate 'moveTargetOutOfBounds' with '@MainActor' if property should only be accessed from the main actor
        public static let moveTargetOutOfBounds = Self(rawValue: 34)
                          ^
        @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/WebDriver/ErrorResponse.swift:43:27: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
        public static let moveTargetOutOfBounds = Self(rawValue: 34)
                          ^
        nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/WebDriver/ErrorResponse.swift:3:16: warning: stored property 'status' of 'Sendable'-conforming struct 'ErrorResponse' has non-sendable type 'ErrorResponse.Status'; this is an error in the Swift 6 language mode
    public var status: Status
               ^
/Users/admin/builder/spi-builder-workspace/Sources/WebDriver/ErrorResponse.swift:16:19: note: consider making struct 'Status' conform to the 'Sendable' protocol
    public struct Status: Codable, Hashable, RawRepresentable {
                  ^
                                                             , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/WebDriver/ErrorResponse.swift:4:16: warning: stored property 'value' of 'Sendable'-conforming struct 'ErrorResponse' has non-sendable type 'ErrorResponse.Value'; this is an error in the Swift 6 language mode
    public var value: Value
               ^
/Users/admin/builder/spi-builder-workspace/Sources/WebDriver/ErrorResponse.swift:50:19: note: consider making struct 'Value' conform to the 'Sendable' protocol
    public struct Value: Codable {
                  ^
                                , Sendable
SwiftDriverJobDiscovery normal arm64_32 Compiling NoSuchElementError.swift, Poll.swift (in target 'WebDriver' from project 'swift-webdriver')
SwiftCompile normal arm64 Compiling\ Request.swift,\ Requests.swift /Users/admin/builder/spi-builder-workspace/Sources/WebDriver/Request.swift /Users/admin/builder/spi-builder-workspace/Sources/WebDriver/Requests.swift (in target 'WebDriver' from project 'swift-webdriver')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
    builtin-swiftTaskExecution -- /Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/swift-frontend -frontend -c /Users/admin/builder/spi-builder-workspace/Sources/WebDriver/Capabilities.swift /Users/admin/builder/spi-builder-workspace/Sources/WebDriver/Element.swift /Users/admin/builder/spi-builder-workspace/Sources/WebDriver/ElementLocator.swift /Users/admin/builder/spi-builder-workspace/Sources/WebDriver/ErrorResponse.swift /Users/admin/builder/spi-builder-workspace/Sources/WebDriver/HTTPWebDriver.swift /Users/admin/builder/spi-builder-workspace/Sources/WebDriver/Keys.swift /Users/admin/builder/spi-builder-workspace/Sources/WebDriver/Location.swift /Users/admin/builder/spi-builder-workspace/Sources/WebDriver/MouseButton.swift /Users/admin/builder/spi-builder-workspace/Sources/WebDriver/NoSuchElementError.swift /Users/admin/builder/spi-builder-workspace/Sources/WebDriver/Poll.swift -primary-file /Users/admin/builder/spi-builder-workspace/Sources/WebDriver/Request.swift -primary-file /Users/admin/builder/spi-builder-workspace/Sources/WebDriver/Requests.swift /Users/admin/builder/spi-builder-workspace/Sources/WebDriver/ScreenOrientation.swift /Users/admin/builder/spi-builder-workspace/Sources/WebDriver/Session.swift /Users/admin/builder/spi-builder-workspace/Sources/WebDriver/TimeoutType.swift /Users/admin/builder/spi-builder-workspace/Sources/WebDriver/TouchClickKind.swift /Users/admin/builder/spi-builder-workspace/Sources/WebDriver/URLRequestExtensions.swift /Users/admin/builder/spi-builder-workspace/Sources/WebDriver/WebDriver.swift /Users/admin/builder/spi-builder-workspace/Sources/WebDriver/WebDriverStatus.swift /Users/admin/builder/spi-builder-workspace/Sources/WebDriver/Window.swift -emit-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-webdriver.build/Debug-watchos/WebDriver.build/Objects-normal/arm64/Request.d -emit-const-values-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-webdriver.build/Debug-watchos/WebDriver.build/Objects-normal/arm64/Request.swiftconstvalues -emit-reference-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-webdriver.build/Debug-watchos/WebDriver.build/Objects-normal/arm64/Request.swiftdeps -serialize-diagnostics-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-webdriver.build/Debug-watchos/WebDriver.build/Objects-normal/arm64/Request.dia -emit-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-webdriver.build/Debug-watchos/WebDriver.build/Objects-normal/arm64/Requests.d -emit-const-values-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-webdriver.build/Debug-watchos/WebDriver.build/Objects-normal/arm64/Requests.swiftconstvalues -emit-reference-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-webdriver.build/Debug-watchos/WebDriver.build/Objects-normal/arm64/Requests.swiftdeps -serialize-diagnostics-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-webdriver.build/Debug-watchos/WebDriver.build/Objects-normal/arm64/Requests.dia -target arm64-apple-watchos5.0 -Xllvm -aarch64-use-tbi -enable-objc-interop -sdk /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS11.1.sdk -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -I /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -F /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/Library/Frameworks -F /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS11.1.sdk/Developer/Library/Frameworks -no-color-diagnostics -enable-testing -g -debug-info-format\=dwarf -dwarf-version\=4 -module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -profile-generate -profile-coverage-mapping -swift-version 5 -enforce-exclusivity\=checked -stats-output-dir /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode/.stats -Onone -D SWIFT_PACKAGE -D DEBUG -serialize-debugging-options -const-gather-protocols-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-webdriver.build/Debug-watchos/WebDriver.build/Objects-normal/arm64/WebDriver_const_extract_protocols.json -enable-experimental-feature DebugDescriptionMacro -enable-experimental-feature OpaqueTypeErasure -strict-concurrency\=complete -empty-abi-descriptor -plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/plugins/testing -validate-clang-modules-once -clang-build-session-file /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex/Session.modulevalidation -Xcc -working-directory -Xcc /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode -resource-dir /Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift -enable-anonymous-context-mangled-names -file-compilation-dir /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode -Xcc -D_LIBCPP_HARDENING_MODE\=_LIBCPP_HARDENING_MODE_DEBUG -Xcc -ivfsstatcache -Xcc /Users/admin/builder/spi-builder-workspace/.derivedData/SDKStatCaches.noindex/watchos11.1-22R574-7b9df0bda16bb4641b33636c68f04660.sdkstatcache -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-webdriver.build/Debug-watchos/WebDriver.build/swift-overrides.hmap -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-webdriver.build/Debug-watchos/WebDriver.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-webdriver.build/Debug-watchos/WebDriver.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-webdriver.build/Debug-watchos/WebDriver.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -module-name WebDriver -frontend-parseable-output -disable-clang-spi -target-sdk-version 11.1 -target-sdk-name watchos11.1 -external-plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/lib/swift/host/plugins\#/Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/local/lib/swift/host/plugins\#/Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/bin/swift-plugin-server -plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/plugins -plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/local/lib/swift/host/plugins -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-webdriver.build/Debug-watchos/WebDriver.build/Objects-normal/arm64/Request.o -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-webdriver.build/Debug-watchos/WebDriver.build/Objects-normal/arm64/Requests.o -index-unit-output-path /swift-webdriver.build/Debug-watchos/WebDriver.build/Objects-normal/arm64/Request.o -index-unit-output-path /swift-webdriver.build/Debug-watchos/WebDriver.build/Objects-normal/arm64/Requests.o -index-store-path /Users/admin/builder/spi-builder-workspace/.derivedData/Index.noindex/DataStore -index-system-modules
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/WebDriver/Request.swift (in target 'WebDriver' from project 'swift-webdriver')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
    /Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/swift-frontend -c /Users/admin/builder/spi-builder-workspace/Sources/WebDriver/Capabilities.swift /Users/admin/builder/spi-builder-workspace/Sources/WebDriver/Element.swift /Users/admin/builder/spi-builder-workspace/Sources/WebDriver/ElementLocator.swift /Users/admin/builder/spi-builder-workspace/Sources/WebDriver/ErrorResponse.swift /Users/admin/builder/spi-builder-workspace/Sources/WebDriver/HTTPWebDriver.swift /Users/admin/builder/spi-builder-workspace/Sources/WebDriver/Keys.swift /Users/admin/builder/spi-builder-workspace/Sources/WebDriver/Location.swift /Users/admin/builder/spi-builder-workspace/Sources/WebDriver/MouseButton.swift /Users/admin/builder/spi-builder-workspace/Sources/WebDriver/NoSuchElementError.swift /Users/admin/builder/spi-builder-workspace/Sources/WebDriver/Poll.swift -primary-file /Users/admin/builder/spi-builder-workspace/Sources/WebDriver/Request.swift -primary-file /Users/admin/builder/spi-builder-workspace/Sources/WebDriver/Requests.swift /Users/admin/builder/spi-builder-workspace/Sources/WebDriver/ScreenOrientation.swift /Users/admin/builder/spi-builder-workspace/Sources/WebDriver/Session.swift /Users/admin/builder/spi-builder-workspace/Sources/WebDriver/TimeoutType.swift /Users/admin/builder/spi-builder-workspace/Sources/WebDriver/TouchClickKind.swift /Users/admin/builder/spi-builder-workspace/Sources/WebDriver/URLRequestExtensions.swift /Users/admin/builder/spi-builder-workspace/Sources/WebDriver/WebDriver.swift /Users/admin/builder/spi-builder-workspace/Sources/WebDriver/WebDriverStatus.swift /Users/admin/builder/spi-builder-workspace/Sources/WebDriver/Window.swift -emit-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-webdriver.build/Debug-watchos/WebDriver.build/Objects-normal/arm64/Request.d -emit-const-values-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-webdriver.build/Debug-watchos/WebDriver.build/Objects-normal/arm64/Request.swiftconstvalues -emit-reference-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-webdriver.build/Debug-watchos/WebDriver.build/Objects-normal/arm64/Request.swiftdeps -serialize-diagnostics-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-webdriver.build/Debug-watchos/WebDriver.build/Objects-normal/arm64/Request.dia -emit-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-webdriver.build/Debug-watchos/WebDriver.build/Objects-normal/arm64/Requests.d -emit-const-values-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-webdriver.build/Debug-watchos/WebDriver.build/Objects-normal/arm64/Requests.swiftconstvalues -emit-reference-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-webdriver.build/Debug-watchos/WebDriver.build/Objects-normal/arm64/Requests.swiftdeps -serialize-diagnostics-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-webdriver.build/Debug-watchos/WebDriver.build/Objects-normal/arm64/Requests.dia -target arm64-apple-watchos5.0 -Xllvm -aarch64-use-tbi -enable-objc-interop -sdk /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS11.1.sdk -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -I /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -F /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/Library/Frameworks -F /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS11.1.sdk/Developer/Library/Frameworks -no-color-diagnostics -enable-testing -g -debug-info-format\=dwarf -dwarf-version\=4 -module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -profile-generate -profile-coverage-mapping -swift-version 5 -enforce-exclusivity\=checked -stats-output-dir /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode/.stats -Onone -D SWIFT_PACKAGE -D DEBUG -serialize-debugging-options -const-gather-protocols-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-webdriver.build/Debug-watchos/WebDriver.build/Objects-normal/arm64/WebDriver_const_extract_protocols.json -enable-experimental-feature DebugDescriptionMacro -enable-experimental-feature OpaqueTypeErasure -strict-concurrency\=complete -empty-abi-descriptor -plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/plugins/testing -validate-clang-modules-once -clang-build-session-file /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex/Session.modulevalidation -Xcc -working-directory -Xcc /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode -resource-dir /Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift -enable-anonymous-context-mangled-names -file-compilation-dir /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode -Xcc -D_LIBCPP_HARDENING_MODE\=_LIBCPP_HARDENING_MODE_DEBUG -Xcc -ivfsstatcache -Xcc /Users/admin/builder/spi-builder-workspace/.derivedData/SDKStatCaches.noindex/watchos11.1-22R574-7b9df0bda16bb4641b33636c68f04660.sdkstatcache -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-webdriver.build/Debug-watchos/WebDriver.build/swift-overrides.hmap -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-webdriver.build/Debug-watchos/WebDriver.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-webdriver.build/Debug-watchos/WebDriver.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-webdriver.build/Debug-watchos/WebDriver.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -module-name WebDriver -frontend-parseable-output -disable-clang-spi -target-sdk-version 11.1 -target-sdk-name watchos11.1 -external-plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/lib/swift/host/plugins\#/Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/local/lib/swift/host/plugins\#/Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/bin/swift-plugin-server -plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/plugins -plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/local/lib/swift/host/plugins -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-webdriver.build/Debug-watchos/WebDriver.build/Objects-normal/arm64/Request.o -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-webdriver.build/Debug-watchos/WebDriver.build/Objects-normal/arm64/Requests.o -index-unit-output-path /swift-webdriver.build/Debug-watchos/WebDriver.build/Objects-normal/arm64/Request.o -index-unit-output-path /swift-webdriver.build/Debug-watchos/WebDriver.build/Objects-normal/arm64/Requests.o -index-store-path /Users/admin/builder/spi-builder-workspace/.derivedData/Index.noindex/DataStore -index-system-modules
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/WebDriver/Requests.swift (in target 'WebDriver' from project 'swift-webdriver')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
    /Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/swift-frontend -c /Users/admin/builder/spi-builder-workspace/Sources/WebDriver/Capabilities.swift /Users/admin/builder/spi-builder-workspace/Sources/WebDriver/Element.swift /Users/admin/builder/spi-builder-workspace/Sources/WebDriver/ElementLocator.swift /Users/admin/builder/spi-builder-workspace/Sources/WebDriver/ErrorResponse.swift /Users/admin/builder/spi-builder-workspace/Sources/WebDriver/HTTPWebDriver.swift /Users/admin/builder/spi-builder-workspace/Sources/WebDriver/Keys.swift /Users/admin/builder/spi-builder-workspace/Sources/WebDriver/Location.swift /Users/admin/builder/spi-builder-workspace/Sources/WebDriver/MouseButton.swift /Users/admin/builder/spi-builder-workspace/Sources/WebDriver/NoSuchElementError.swift /Users/admin/builder/spi-builder-workspace/Sources/WebDriver/Poll.swift -primary-file /Users/admin/builder/spi-builder-workspace/Sources/WebDriver/Request.swift -primary-file /Users/admin/builder/spi-builder-workspace/Sources/WebDriver/Requests.swift /Users/admin/builder/spi-builder-workspace/Sources/WebDriver/ScreenOrientation.swift /Users/admin/builder/spi-builder-workspace/Sources/WebDriver/Session.swift /Users/admin/builder/spi-builder-workspace/Sources/WebDriver/TimeoutType.swift /Users/admin/builder/spi-builder-workspace/Sources/WebDriver/TouchClickKind.swift /Users/admin/builder/spi-builder-workspace/Sources/WebDriver/URLRequestExtensions.swift /Users/admin/builder/spi-builder-workspace/Sources/WebDriver/WebDriver.swift /Users/admin/builder/spi-builder-workspace/Sources/WebDriver/WebDriverStatus.swift /Users/admin/builder/spi-builder-workspace/Sources/WebDriver/Window.swift -emit-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-webdriver.build/Debug-watchos/WebDriver.build/Objects-normal/arm64/Request.d -emit-const-values-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-webdriver.build/Debug-watchos/WebDriver.build/Objects-normal/arm64/Request.swiftconstvalues -emit-reference-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-webdriver.build/Debug-watchos/WebDriver.build/Objects-normal/arm64/Request.swiftdeps -serialize-diagnostics-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-webdriver.build/Debug-watchos/WebDriver.build/Objects-normal/arm64/Request.dia -emit-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-webdriver.build/Debug-watchos/WebDriver.build/Objects-normal/arm64/Requests.d -emit-const-values-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-webdriver.build/Debug-watchos/WebDriver.build/Objects-normal/arm64/Requests.swiftconstvalues -emit-reference-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-webdriver.build/Debug-watchos/WebDriver.build/Objects-normal/arm64/Requests.swiftdeps -serialize-diagnostics-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-webdriver.build/Debug-watchos/WebDriver.build/Objects-normal/arm64/Requests.dia -target arm64-apple-watchos5.0 -Xllvm -aarch64-use-tbi -enable-objc-interop -sdk /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS11.1.sdk -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -I /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -F /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/Library/Frameworks -F /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS11.1.sdk/Developer/Library/Frameworks -no-color-diagnostics -enable-testing -g -debug-info-format\=dwarf -dwarf-version\=4 -module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -profile-generate -profile-coverage-mapping -swift-version 5 -enforce-exclusivity\=checked -stats-output-dir /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode/.stats -Onone -D SWIFT_PACKAGE -D DEBUG -serialize-debugging-options -const-gather-protocols-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-webdriver.build/Debug-watchos/WebDriver.build/Objects-normal/arm64/WebDriver_const_extract_protocols.json -enable-experimental-feature DebugDescriptionMacro -enable-experimental-feature OpaqueTypeErasure -strict-concurrency\=complete -empty-abi-descriptor -plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/plugins/testing -validate-clang-modules-once -clang-build-session-file /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex/Session.modulevalidation -Xcc -working-directory -Xcc /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode -resource-dir /Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift -enable-anonymous-context-mangled-names -file-compilation-dir /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode -Xcc -D_LIBCPP_HARDENING_MODE\=_LIBCPP_HARDENING_MODE_DEBUG -Xcc -ivfsstatcache -Xcc /Users/admin/builder/spi-builder-workspace/.derivedData/SDKStatCaches.noindex/watchos11.1-22R574-7b9df0bda16bb4641b33636c68f04660.sdkstatcache -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-webdriver.build/Debug-watchos/WebDriver.build/swift-overrides.hmap -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-webdriver.build/Debug-watchos/WebDriver.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-webdriver.build/Debug-watchos/WebDriver.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-webdriver.build/Debug-watchos/WebDriver.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -module-name WebDriver -frontend-parseable-output -disable-clang-spi -target-sdk-version 11.1 -target-sdk-name watchos11.1 -external-plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/lib/swift/host/plugins\#/Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/local/lib/swift/host/plugins\#/Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/bin/swift-plugin-server -plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/plugins -plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/local/lib/swift/host/plugins -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-webdriver.build/Debug-watchos/WebDriver.build/Objects-normal/arm64/Request.o -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-webdriver.build/Debug-watchos/WebDriver.build/Objects-normal/arm64/Requests.o -index-unit-output-path /swift-webdriver.build/Debug-watchos/WebDriver.build/Objects-normal/arm64/Request.o -index-unit-output-path /swift-webdriver.build/Debug-watchos/WebDriver.build/Objects-normal/arm64/Requests.o -index-store-path /Users/admin/builder/spi-builder-workspace/.derivedData/Index.noindex/DataStore -index-system-modules
SwiftDriverJobDiscovery normal armv7k Compiling Capabilities.swift, Element.swift (in target 'WebDriver' from project 'swift-webdriver')
SwiftDriverJobDiscovery normal armv7k Compiling HTTPWebDriver.swift, Keys.swift (in target 'WebDriver' from project 'swift-webdriver')
SwiftDriverJobDiscovery normal arm64 Compiling HTTPWebDriver.swift, Keys.swift (in target 'WebDriver' from project 'swift-webdriver')
SwiftDriverJobDiscovery normal armv7k Compiling ElementLocator.swift, ErrorResponse.swift (in target 'WebDriver' from project 'swift-webdriver')
SwiftDriverJobDiscovery normal arm64_32 Compiling Capabilities.swift, Element.swift (in target 'WebDriver' from project 'swift-webdriver')
SwiftDriver\ Compilation WebDriver normal arm64_32 com.apple.xcode.tools.swift.compiler (in target 'WebDriver' from project 'swift-webdriver')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
    builtin-Swift-Compilation -- /Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/swiftc -module-name WebDriver -Onone -enforce-exclusivity\=checked @/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-webdriver.build/Debug-watchos/WebDriver.build/Objects-normal/arm64_32/WebDriver.SwiftFileList -DSWIFT_PACKAGE -DDEBUG -stats-output-dir .stats -strict-concurrency\=complete -plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/plugins/testing -enable-experimental-feature DebugDescriptionMacro -sdk /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS11.1.sdk -target arm64_32-apple-watchos5.0 -g -module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -Xfrontend -serialize-debugging-options -profile-coverage-mapping -profile-generate -enable-testing -index-store-path /Users/admin/builder/spi-builder-workspace/.derivedData/Index.noindex/DataStore -enable-experimental-feature OpaqueTypeErasure -Xcc -D_LIBCPP_HARDENING_MODE\=_LIBCPP_HARDENING_MODE_DEBUG -swift-version 5 -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -I /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -F /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/Library/Frameworks -F /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS11.1.sdk/Developer/Library/Frameworks -c -j10 -enable-batch-mode -incremental -Xcc -ivfsstatcache -Xcc /Users/admin/builder/spi-builder-workspace/.derivedData/SDKStatCaches.noindex/watchos11.1-22R574-7b9df0bda16bb4641b33636c68f04660.sdkstatcache -output-file-map /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-webdriver.build/Debug-watchos/WebDriver.build/Objects-normal/arm64_32/WebDriver-OutputFileMap.json -use-frontend-parseable-output -save-temps -no-color-diagnostics -serialize-diagnostics -emit-dependencies -emit-module -emit-module-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-webdriver.build/Debug-watchos/WebDriver.build/Objects-normal/arm64_32/WebDriver.swiftmodule -validate-clang-modules-once -clang-build-session-file /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex/Session.modulevalidation -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-webdriver.build/Debug-watchos/WebDriver.build/swift-overrides.hmap -emit-const-values -Xfrontend -const-gather-protocols-file -Xfrontend /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-webdriver.build/Debug-watchos/WebDriver.build/Objects-normal/arm64_32/WebDriver_const_extract_protocols.json -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-webdriver.build/Debug-watchos/WebDriver.build/DerivedSources-normal/arm64_32 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-webdriver.build/Debug-watchos/WebDriver.build/DerivedSources/arm64_32 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-webdriver.build/Debug-watchos/WebDriver.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -emit-objc-header -emit-objc-header-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-webdriver.build/Debug-watchos/WebDriver.build/Objects-normal/arm64_32/WebDriver-Swift.h -working-directory /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode -experimental-emit-module-separately -disable-cmo
Ld /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-webdriver.build/Debug-watchos/WebDriver.build/Objects-normal/arm64_32/Binary/WebDriver.o normal arm64_32 (in target 'WebDriver' from project 'swift-webdriver')
    cd /Users/admin/builder/spi-builder-workspace
    /Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -Xlinker -reproducible -target arm64_32-apple-watchos5.0 -r -isysroot /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS11.1.sdk -O0 -L/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EagerLinkingTBDs/Debug-watchos -L/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -L/Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/lib -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EagerLinkingTBDs/Debug-watchos -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -iframework /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/Library/Frameworks -iframework /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS11.1.sdk/Developer/Library/Frameworks -filelist /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-webdriver.build/Debug-watchos/WebDriver.build/Objects-normal/arm64_32/WebDriver.LinkFileList -nostdlib -Xlinker -object_path_lto -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-webdriver.build/Debug-watchos/WebDriver.build/Objects-normal/arm64_32/WebDriver_lto.o -Xlinker -export_dynamic -Xlinker -no_deduplicate -Xlinker -debug_variant -fobjc-link-runtime -L/Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/watchos -L/usr/lib/swift -Xlinker -add_ast_path -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-webdriver.build/Debug-watchos/WebDriver.build/Objects-normal/arm64_32/WebDriver.swiftmodule -Xlinker -dependency_info -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-webdriver.build/Debug-watchos/WebDriver.build/Objects-normal/arm64_32/WebDriver_dependency_info.dat -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-webdriver.build/Debug-watchos/WebDriver.build/Objects-normal/arm64_32/Binary/WebDriver.o
SwiftDriverJobDiscovery normal armv7k Compiling ScreenOrientation.swift, Session.swift (in target 'WebDriver' from project 'swift-webdriver')
SwiftDriverJobDiscovery normal armv7k Compiling NoSuchElementError.swift, Poll.swift (in target 'WebDriver' from project 'swift-webdriver')
SwiftDriverJobDiscovery normal armv7k Compiling URLRequestExtensions.swift, WebDriver.swift (in target 'WebDriver' from project 'swift-webdriver')
SwiftDriverJobDiscovery normal armv7k Compiling Request.swift, Requests.swift (in target 'WebDriver' from project 'swift-webdriver')
SwiftDriver\ Compilation WebDriver normal armv7k com.apple.xcode.tools.swift.compiler (in target 'WebDriver' from project 'swift-webdriver')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
    builtin-Swift-Compilation -- /Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/swiftc -module-name WebDriver -Onone -enforce-exclusivity\=checked @/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-webdriver.build/Debug-watchos/WebDriver.build/Objects-normal/armv7k/WebDriver.SwiftFileList -DSWIFT_PACKAGE -DDEBUG -stats-output-dir .stats -strict-concurrency\=complete -plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/plugins/testing -enable-experimental-feature DebugDescriptionMacro -sdk /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS11.1.sdk -target armv7k-apple-watchos5.0 -g -module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -Xfrontend -serialize-debugging-options -profile-coverage-mapping -profile-generate -enable-testing -index-store-path /Users/admin/builder/spi-builder-workspace/.derivedData/Index.noindex/DataStore -enable-experimental-feature OpaqueTypeErasure -Xcc -D_LIBCPP_HARDENING_MODE\=_LIBCPP_HARDENING_MODE_DEBUG -swift-version 5 -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -I /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -F /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/Library/Frameworks -F /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS11.1.sdk/Developer/Library/Frameworks -c -j10 -enable-batch-mode -incremental -Xcc -ivfsstatcache -Xcc /Users/admin/builder/spi-builder-workspace/.derivedData/SDKStatCaches.noindex/watchos11.1-22R574-7b9df0bda16bb4641b33636c68f04660.sdkstatcache -output-file-map /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-webdriver.build/Debug-watchos/WebDriver.build/Objects-normal/armv7k/WebDriver-OutputFileMap.json -use-frontend-parseable-output -save-temps -no-color-diagnostics -serialize-diagnostics -emit-dependencies -emit-module -emit-module-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-webdriver.build/Debug-watchos/WebDriver.build/Objects-normal/armv7k/WebDriver.swiftmodule -validate-clang-modules-once -clang-build-session-file /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex/Session.modulevalidation -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-webdriver.build/Debug-watchos/WebDriver.build/swift-overrides.hmap -emit-const-values -Xfrontend -const-gather-protocols-file -Xfrontend /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-webdriver.build/Debug-watchos/WebDriver.build/Objects-normal/armv7k/WebDriver_const_extract_protocols.json -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-webdriver.build/Debug-watchos/WebDriver.build/DerivedSources-normal/armv7k -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-webdriver.build/Debug-watchos/WebDriver.build/DerivedSources/armv7k -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-webdriver.build/Debug-watchos/WebDriver.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -emit-objc-header -emit-objc-header-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-webdriver.build/Debug-watchos/WebDriver.build/Objects-normal/armv7k/WebDriver-Swift.h -working-directory /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode -experimental-emit-module-separately -disable-cmo
Ld /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-webdriver.build/Debug-watchos/WebDriver.build/Objects-normal/armv7k/Binary/WebDriver.o normal armv7k (in target 'WebDriver' from project 'swift-webdriver')
    cd /Users/admin/builder/spi-builder-workspace
    /Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -Xlinker -reproducible -target armv7k-apple-watchos5.0 -r -isysroot /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS11.1.sdk -O0 -L/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EagerLinkingTBDs/Debug-watchos -L/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -L/Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/lib -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EagerLinkingTBDs/Debug-watchos -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -iframework /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/Library/Frameworks -iframework /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS11.1.sdk/Developer/Library/Frameworks -filelist /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-webdriver.build/Debug-watchos/WebDriver.build/Objects-normal/armv7k/WebDriver.LinkFileList -nostdlib -Xlinker -object_path_lto -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-webdriver.build/Debug-watchos/WebDriver.build/Objects-normal/armv7k/WebDriver_lto.o -Xlinker -export_dynamic -Xlinker -no_deduplicate -Xlinker -debug_variant -fobjc-link-runtime -L/Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/watchos -L/usr/lib/swift -Xlinker -add_ast_path -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-webdriver.build/Debug-watchos/WebDriver.build/Objects-normal/armv7k/WebDriver.swiftmodule -Xlinker -dependency_info -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-webdriver.build/Debug-watchos/WebDriver.build/Objects-normal/armv7k/WebDriver_dependency_info.dat -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-webdriver.build/Debug-watchos/WebDriver.build/Objects-normal/armv7k/Binary/WebDriver.o
SwiftDriverJobDiscovery normal arm64 Compiling Request.swift, Requests.swift (in target 'WebDriver' from project 'swift-webdriver')
SwiftDriver\ Compilation WebDriver normal arm64 com.apple.xcode.tools.swift.compiler (in target 'WebDriver' from project 'swift-webdriver')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
    builtin-Swift-Compilation -- /Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/swiftc -module-name WebDriver -Onone -enforce-exclusivity\=checked @/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-webdriver.build/Debug-watchos/WebDriver.build/Objects-normal/arm64/WebDriver.SwiftFileList -DSWIFT_PACKAGE -DDEBUG -stats-output-dir .stats -strict-concurrency\=complete -plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/plugins/testing -enable-experimental-feature DebugDescriptionMacro -sdk /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS11.1.sdk -target arm64-apple-watchos5.0 -g -module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -Xfrontend -serialize-debugging-options -profile-coverage-mapping -profile-generate -enable-testing -index-store-path /Users/admin/builder/spi-builder-workspace/.derivedData/Index.noindex/DataStore -enable-experimental-feature OpaqueTypeErasure -Xcc -D_LIBCPP_HARDENING_MODE\=_LIBCPP_HARDENING_MODE_DEBUG -swift-version 5 -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -I /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -F /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/Library/Frameworks -F /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS11.1.sdk/Developer/Library/Frameworks -c -j10 -enable-batch-mode -incremental -Xcc -ivfsstatcache -Xcc /Users/admin/builder/spi-builder-workspace/.derivedData/SDKStatCaches.noindex/watchos11.1-22R574-7b9df0bda16bb4641b33636c68f04660.sdkstatcache -output-file-map /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-webdriver.build/Debug-watchos/WebDriver.build/Objects-normal/arm64/WebDriver-OutputFileMap.json -use-frontend-parseable-output -save-temps -no-color-diagnostics -serialize-diagnostics -emit-dependencies -emit-module -emit-module-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-webdriver.build/Debug-watchos/WebDriver.build/Objects-normal/arm64/WebDriver.swiftmodule -validate-clang-modules-once -clang-build-session-file /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex/Session.modulevalidation -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-webdriver.build/Debug-watchos/WebDriver.build/swift-overrides.hmap -emit-const-values -Xfrontend -const-gather-protocols-file -Xfrontend /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-webdriver.build/Debug-watchos/WebDriver.build/Objects-normal/arm64/WebDriver_const_extract_protocols.json -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-webdriver.build/Debug-watchos/WebDriver.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-webdriver.build/Debug-watchos/WebDriver.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-webdriver.build/Debug-watchos/WebDriver.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -emit-objc-header -emit-objc-header-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-webdriver.build/Debug-watchos/WebDriver.build/Objects-normal/arm64/WebDriver-Swift.h -working-directory /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode -experimental-emit-module-separately -disable-cmo
Ld /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-webdriver.build/Debug-watchos/WebDriver.build/Objects-normal/arm64/Binary/WebDriver.o normal arm64 (in target 'WebDriver' from project 'swift-webdriver')
    cd /Users/admin/builder/spi-builder-workspace
    /Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -Xlinker -reproducible -target arm64-apple-watchos5.0 -r -isysroot /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS11.1.sdk -O0 -L/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EagerLinkingTBDs/Debug-watchos -L/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -L/Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/lib -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EagerLinkingTBDs/Debug-watchos -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -iframework /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/Library/Frameworks -iframework /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS11.1.sdk/Developer/Library/Frameworks -filelist /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-webdriver.build/Debug-watchos/WebDriver.build/Objects-normal/arm64/WebDriver.LinkFileList -nostdlib -Xlinker -object_path_lto -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-webdriver.build/Debug-watchos/WebDriver.build/Objects-normal/arm64/WebDriver_lto.o -Xlinker -export_dynamic -Xlinker -no_deduplicate -Xlinker -debug_variant -fobjc-link-runtime -L/Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/watchos -L/usr/lib/swift -Xlinker -add_ast_path -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-webdriver.build/Debug-watchos/WebDriver.build/Objects-normal/arm64/WebDriver.swiftmodule -Xlinker -dependency_info -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-webdriver.build/Debug-watchos/WebDriver.build/Objects-normal/arm64/WebDriver_dependency_info.dat -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-webdriver.build/Debug-watchos/WebDriver.build/Objects-normal/arm64/Binary/WebDriver.o
CreateUniversalBinary /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/WebDriver.o normal arm64\ armv7k\ arm64_32 (in target 'WebDriver' from project 'swift-webdriver')
    cd /Users/admin/builder/spi-builder-workspace
    /Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/lipo -create /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-webdriver.build/Debug-watchos/WebDriver.build/Objects-normal/arm64/Binary/WebDriver.o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-webdriver.build/Debug-watchos/WebDriver.build/Objects-normal/armv7k/Binary/WebDriver.o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-webdriver.build/Debug-watchos/WebDriver.build/Objects-normal/arm64_32/Binary/WebDriver.o -output /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/WebDriver.o
RegisterExecutionPolicyException /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/WebDriver.o (in target 'WebDriver' from project 'swift-webdriver')
    cd /Users/admin/builder/spi-builder-workspace
    builtin-RegisterExecutionPolicyException /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/WebDriver.o
** BUILD SUCCEEDED **
Build complete.
{
  "dependencies" : [
  ],
  "manifest_display_name" : "swift-webdriver",
  "name" : "swift-webdriver",
  "path" : "/Users/admin/builder/spi-builder-workspace",
  "platforms" : [
  ],
  "products" : [
    {
      "name" : "WebDriver",
      "targets" : [
        "WebDriver"
      ],
      "type" : {
        "library" : [
          "automatic"
        ]
      }
    }
  ],
  "targets" : [
    {
      "c99name" : "WebDriver",
      "module_type" : "SwiftTarget",
      "name" : "WebDriver",
      "path" : "Sources/WebDriver",
      "product_memberships" : [
        "WebDriver"
      ],
      "sources" : [
        "Capabilities.swift",
        "Element.swift",
        "ElementLocator.swift",
        "ErrorResponse.swift",
        "HTTPWebDriver.swift",
        "Keys.swift",
        "Location.swift",
        "MouseButton.swift",
        "NoSuchElementError.swift",
        "Poll.swift",
        "Request.swift",
        "Requests.swift",
        "ScreenOrientation.swift",
        "Session.swift",
        "TimeoutType.swift",
        "TouchClickKind.swift",
        "URLRequestExtensions.swift",
        "WebDriver.swift",
        "WebDriverStatus.swift",
        "Window.swift"
      ],
      "type" : "library"
    },
    {
      "c99name" : "UnitTests",
      "module_type" : "SwiftTarget",
      "name" : "UnitTests",
      "path" : "Tests/UnitTests",
      "sources" : [
        "APIToRequestMappingTests.swift",
        "MockWebDriver.swift"
      ],
      "target_dependencies" : [
        "TestsCommon",
        "WebDriver"
      ],
      "type" : "test"
    },
    {
      "c99name" : "TestsCommon",
      "module_type" : "SwiftTarget",
      "name" : "TestsCommon",
      "path" : "Tests/Common",
      "sources" : [
        "PNGUtilities.swift"
      ],
      "type" : "library"
    }
  ],
  "tools_version" : "5.8"
}
Done.