Build Information
Successful build of swift-webdriver, reference main (eb79ab
), with Swift 6.1 for watchOS using Xcode 16.3 on 2 May 2025 21:23:17 UTC.
Swift 6 data race errors: 357
Build Command
env DEVELOPER_DIR=/Applications/Xcode-16.3.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 -enable-upcoming-feature StrictConcurrency -enable-upcoming-feature DisableOutwardActorInference -enable-upcoming-feature GlobalActorIsolatedTypesUsability -enable-upcoming-feature InferSendableFromCaptures
Build Log
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: add '@MainActor' to make static property 'digit7' part of global actor 'MainActor'
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: add '@MainActor' to make static property 'digit8' part of global actor 'MainActor'
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: add '@MainActor' to make static property 'digit9' part of global actor 'MainActor'
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: add '@MainActor' to make static property 'digit0' part of global actor 'MainActor'
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: add '@MainActor' to make static property 'cancel' part of global actor 'MainActor'
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: add '@MainActor' to make static property 'help' part of global actor 'MainActor'
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: add '@MainActor' to make static property 'backspace' part of global actor 'MainActor'
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: add '@MainActor' to make static property 'tab' part of global actor 'MainActor'
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: add '@MainActor' to make static property 'clear' part of global actor 'MainActor'
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: add '@MainActor' to make static property 'returnKey' part of global actor 'MainActor'
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: add '@MainActor' to make static property 'enter' part of global actor 'MainActor'
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: add '@MainActor' to make static property 'pause' part of global actor 'MainActor'
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: add '@MainActor' to make static property 'escape' part of global actor 'MainActor'
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: add '@MainActor' to make static property 'space' part of global actor 'MainActor'
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: add '@MainActor' to make static property 'pageup' part of global actor 'MainActor'
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: add '@MainActor' to make static property 'pagedown' part of global actor 'MainActor'
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: add '@MainActor' to make static property 'end' part of global actor 'MainActor'
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: add '@MainActor' to make static property 'home' part of global actor 'MainActor'
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: add '@MainActor' to make static property 'leftArrow' part of global actor 'MainActor'
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: add '@MainActor' to make static property 'upArrow' part of global actor 'MainActor'
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: add '@MainActor' to make static property 'rightArrow' part of global actor 'MainActor'
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: add '@MainActor' to make static property 'downArrow' part of global actor 'MainActor'
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: add '@MainActor' to make static property 'insert' part of global actor 'MainActor'
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: add '@MainActor' to make static property 'delete' part of global actor 'MainActor'
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: add '@MainActor' to make static property 'semicolon' part of global actor 'MainActor'
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: add '@MainActor' to make static property 'equals' part of global actor 'MainActor'
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: add '@MainActor' to make static property 'numpad0' part of global actor 'MainActor'
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: add '@MainActor' to make static property 'numpad1' part of global actor 'MainActor'
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: add '@MainActor' to make static property 'numpad2' part of global actor 'MainActor'
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: add '@MainActor' to make static property 'numpad3' part of global actor 'MainActor'
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: add '@MainActor' to make static property 'numpad4' part of global actor 'MainActor'
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: add '@MainActor' to make static property 'numpad5' part of global actor 'MainActor'
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: add '@MainActor' to make static property 'numpad6' part of global actor 'MainActor'
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: add '@MainActor' to make static property 'numpad7' part of global actor 'MainActor'
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: add '@MainActor' to make static property 'numpad8' part of global actor 'MainActor'
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: add '@MainActor' to make static property 'numpad9' part of global actor 'MainActor'
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: add '@MainActor' to make static property 'multiply' part of global actor 'MainActor'
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: add '@MainActor' to make static property 'add' part of global actor 'MainActor'
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: add '@MainActor' to make static property 'separator' part of global actor 'MainActor'
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: add '@MainActor' to make static property 'subtract' part of global actor 'MainActor'
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: add '@MainActor' to make static property 'decimal' part of global actor 'MainActor'
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: add '@MainActor' to make static property 'divide' part of global actor 'MainActor'
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: add '@MainActor' to make static property 'f1' part of global actor 'MainActor'
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: add '@MainActor' to make static property 'f2' part of global actor 'MainActor'
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: add '@MainActor' to make static property 'f3' part of global actor 'MainActor'
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: add '@MainActor' to make static property 'f4' part of global actor 'MainActor'
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: add '@MainActor' to make static property 'f5' part of global actor 'MainActor'
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: add '@MainActor' to make static property 'f6' part of global actor 'MainActor'
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: add '@MainActor' to make static property 'f7' part of global actor 'MainActor'
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: add '@MainActor' to make static property 'f8' part of global actor 'MainActor'
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: add '@MainActor' to make static property 'f9' part of global actor 'MainActor'
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: add '@MainActor' to make static property 'f10' part of global actor 'MainActor'
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: add '@MainActor' to make static property 'f11' part of global actor 'MainActor'
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: add '@MainActor' to make static property 'f12' part of global actor 'MainActor'
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: add '@MainActor' to make static property 'shiftModifier' part of global actor 'MainActor'
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: add '@MainActor' to make static property 'controlModifier' part of global actor 'MainActor'
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: add '@MainActor' to make static property 'altModifier' part of global actor 'MainActor'
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: add '@MainActor' to make static property 'metaModifier' part of global actor 'MainActor'
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: add '@MainActor' to make static property 'releaseModifiers' part of global actor 'MainActor'
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)
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/WebDriver/Location.swift (in target 'WebDriver' from project 'swift-webdriver')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/WebDriver/MouseButton.swift (in target 'WebDriver' from project 'swift-webdriver')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftDriverJobDiscovery normal armv7k Compiling Capabilities+AppiumOptions.swift, Capabilities.swift, Element.swift (in target 'WebDriver' from project 'swift-webdriver')
SwiftCompile normal arm64_32 Compiling\ ElementLocator.swift,\ ErrorResponse.swift,\ HTTPWebDriver.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 (in target 'WebDriver' from project 'swift-webdriver')
SwiftCompile normal arm64_32 /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
SwiftCompile normal arm64_32 /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
/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: add '@MainActor' to make static property 'success' part of global actor 'MainActor'
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: add '@MainActor' to make static property 'noSuchDriver' part of global actor 'MainActor'
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: add '@MainActor' to make static property 'noSuchElement' part of global actor 'MainActor'
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: add '@MainActor' to make static property 'noSuchFrame' part of global actor 'MainActor'
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: add '@MainActor' to make static property 'unknownCommand' part of global actor 'MainActor'
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: add '@MainActor' to make static property 'staleElementReference' part of global actor 'MainActor'
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: add '@MainActor' to make static property 'elementNotVisible' part of global actor 'MainActor'
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: add '@MainActor' to make static property 'invalidElementState' part of global actor 'MainActor'
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: add '@MainActor' to make static property 'unknownError' part of global actor 'MainActor'
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: add '@MainActor' to make static property 'elementIsNotSelectable' part of global actor 'MainActor'
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: add '@MainActor' to make static property 'javaScriptError' part of global actor 'MainActor'
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: add '@MainActor' to make static property 'xPathLookupError' part of global actor 'MainActor'
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: add '@MainActor' to make static property 'timeout' part of global actor 'MainActor'
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: add '@MainActor' to make static property 'noSuchWindow' part of global actor 'MainActor'
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: add '@MainActor' to make static property 'invalidCookieDomain' part of global actor 'MainActor'
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: add '@MainActor' to make static property 'unableToSetCookie' part of global actor 'MainActor'
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: add '@MainActor' to make static property 'unexpectedAlertOpen' part of global actor 'MainActor'
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: add '@MainActor' to make static property 'noAlertOpenError' part of global actor 'MainActor'
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: add '@MainActor' to make static property 'scriptTimeout' part of global actor 'MainActor'
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: add '@MainActor' to make static property 'invalidElementCoordinates' part of global actor 'MainActor'
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: add '@MainActor' to make static property 'imeNotAvailable' part of global actor 'MainActor'
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: add '@MainActor' to make static property 'imeEngineActivationFailed' part of global actor 'MainActor'
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: add '@MainActor' to make static property 'invalidSelector' part of global actor 'MainActor'
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: add '@MainActor' to make static property 'sessionNotCreatedException' part of global actor 'MainActor'
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: add '@MainActor' to make static property 'moveTargetOutOfBounds' part of global actor 'MainActor'
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
SwiftCompile normal arm64_32 /Users/admin/builder/spi-builder-workspace/Sources/WebDriver/HTTPWebDriver.swift (in target 'WebDriver' from project 'swift-webdriver')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 Compiling\ NoSuchElementError.swift,\ Poll.swift,\ Request.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 (in target 'WebDriver' from project 'swift-webdriver')
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/WebDriver/NoSuchElementError.swift (in target 'WebDriver' from project 'swift-webdriver')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
/Users/admin/builder/spi-builder-workspace/Sources/WebDriver/NoSuchElementError.swift:4:16: warning: stored property 'locator' of 'Sendable'-conforming struct 'NoSuchElementError' has non-sendable type 'ElementLocator'; this is an error in the Swift 6 language mode
public var locator: ElementLocator
^
/Users/admin/builder/spi-builder-workspace/Sources/WebDriver/ElementLocator.swift:2:15: note: consider making struct 'ElementLocator' conform to the 'Sendable' protocol
public struct ElementLocator: Codable, Hashable {
^
, Sendable
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/WebDriver/Poll.swift (in target 'WebDriver' from project 'swift-webdriver')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
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
SwiftDriverJobDiscovery normal armv7k Compiling ElementLocator.swift, ErrorResponse.swift, HTTPWebDriver.swift (in target 'WebDriver' from project 'swift-webdriver')
SwiftDriverJobDiscovery normal armv7k Compiling Session.swift, TimeoutType.swift (in target 'WebDriver' from project 'swift-webdriver')
SwiftCompile normal arm64_32 Compiling\ Session.swift,\ TimeoutType.swift /Users/admin/builder/spi-builder-workspace/Sources/WebDriver/Session.swift /Users/admin/builder/spi-builder-workspace/Sources/WebDriver/TimeoutType.swift (in target 'WebDriver' from project 'swift-webdriver')
SwiftCompile normal arm64_32 /Users/admin/builder/spi-builder-workspace/Sources/WebDriver/Session.swift (in target 'WebDriver' from project 'swift-webdriver')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64_32 /Users/admin/builder/spi-builder-workspace/Sources/WebDriver/TimeoutType.swift (in target 'WebDriver' from project 'swift-webdriver')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftDriverJobDiscovery normal arm64 Emitting module for WebDriver (in target 'WebDriver' from project 'swift-webdriver')
SwiftDriver\ Compilation\ Requirements 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-Requirements -- /Applications/Xcode-16.3.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 -enable-upcoming-feature StrictConcurrency -enable-upcoming-feature DisableOutwardActorInference -enable-upcoming-feature GlobalActorIsolatedTypesUsability -enable-upcoming-feature InferSendableFromCaptures -plugin-path /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/plugins/testing -enable-experimental-feature DebugDescriptionMacro -sdk /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS11.4.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 -swift-version 5 -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -I /Applications/Xcode-16.3.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.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/Library/Frameworks -F /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS11.4.sdk/Developer/Library/Frameworks -c -j10 -enable-batch-mode -incremental -Xcc -ivfsstatcache -Xcc /Users/admin/builder/spi-builder-workspace/.derivedData/SDKStatCaches.noindex/watchos11.4-22T246-43efb940ff07ba2497b70ec94253f576.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
SwiftDriverJobDiscovery normal arm64 Compiling Keys.swift, Location.swift, MouseButton.swift (in target 'WebDriver' from project 'swift-webdriver')
SwiftCompile normal arm64 Compiling\ ElementLocator.swift,\ ErrorResponse.swift,\ HTTPWebDriver.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 (in target 'WebDriver' from project 'swift-webdriver')
SwiftCompile normal arm64 /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
SwiftCompile normal arm64 /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
/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: add '@MainActor' to make static property 'success' part of global actor 'MainActor'
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: add '@MainActor' to make static property 'noSuchDriver' part of global actor 'MainActor'
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: add '@MainActor' to make static property 'noSuchElement' part of global actor 'MainActor'
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: add '@MainActor' to make static property 'noSuchFrame' part of global actor 'MainActor'
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: add '@MainActor' to make static property 'unknownCommand' part of global actor 'MainActor'
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: add '@MainActor' to make static property 'staleElementReference' part of global actor 'MainActor'
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: add '@MainActor' to make static property 'elementNotVisible' part of global actor 'MainActor'
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: add '@MainActor' to make static property 'invalidElementState' part of global actor 'MainActor'
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: add '@MainActor' to make static property 'unknownError' part of global actor 'MainActor'
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: add '@MainActor' to make static property 'elementIsNotSelectable' part of global actor 'MainActor'
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: add '@MainActor' to make static property 'javaScriptError' part of global actor 'MainActor'
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: add '@MainActor' to make static property 'xPathLookupError' part of global actor 'MainActor'
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: add '@MainActor' to make static property 'timeout' part of global actor 'MainActor'
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: add '@MainActor' to make static property 'noSuchWindow' part of global actor 'MainActor'
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: add '@MainActor' to make static property 'invalidCookieDomain' part of global actor 'MainActor'
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: add '@MainActor' to make static property 'unableToSetCookie' part of global actor 'MainActor'
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: add '@MainActor' to make static property 'unexpectedAlertOpen' part of global actor 'MainActor'
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: add '@MainActor' to make static property 'noAlertOpenError' part of global actor 'MainActor'
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: add '@MainActor' to make static property 'scriptTimeout' part of global actor 'MainActor'
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: add '@MainActor' to make static property 'invalidElementCoordinates' part of global actor 'MainActor'
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: add '@MainActor' to make static property 'imeNotAvailable' part of global actor 'MainActor'
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: add '@MainActor' to make static property 'imeEngineActivationFailed' part of global actor 'MainActor'
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: add '@MainActor' to make static property 'invalidSelector' part of global actor 'MainActor'
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: add '@MainActor' to make static property 'sessionNotCreatedException' part of global actor 'MainActor'
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: add '@MainActor' to make static property 'moveTargetOutOfBounds' part of global actor 'MainActor'
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
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/WebDriver/HTTPWebDriver.swift (in target 'WebDriver' from project 'swift-webdriver')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
Copy /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/WebDriver.swiftmodule/arm64-apple-watchos.swiftmodule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-webdriver.build/Debug-watchos/WebDriver.build/Objects-normal/arm64/WebDriver.swiftmodule (in target 'WebDriver' from project 'swift-webdriver')
cd /Users/admin/builder/spi-builder-workspace
builtin-copy -exclude .DS_Store -exclude CVS -exclude .svn -exclude .git -exclude .hg -resolve-src-symlinks -rename /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-webdriver.build/Debug-watchos/WebDriver.build/Objects-normal/arm64/WebDriver.swiftmodule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/WebDriver.swiftmodule/arm64-apple-watchos.swiftmodule
SwiftDriverJobDiscovery normal arm64_32 Emitting module for WebDriver (in target 'WebDriver' from project 'swift-webdriver')
SwiftDriver\ Compilation\ Requirements 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-Requirements -- /Applications/Xcode-16.3.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 -enable-upcoming-feature StrictConcurrency -enable-upcoming-feature DisableOutwardActorInference -enable-upcoming-feature GlobalActorIsolatedTypesUsability -enable-upcoming-feature InferSendableFromCaptures -plugin-path /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/plugins/testing -enable-experimental-feature DebugDescriptionMacro -sdk /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS11.4.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 -swift-version 5 -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -I /Applications/Xcode-16.3.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.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/Library/Frameworks -F /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS11.4.sdk/Developer/Library/Frameworks -c -j10 -enable-batch-mode -incremental -Xcc -ivfsstatcache -Xcc /Users/admin/builder/spi-builder-workspace/.derivedData/SDKStatCaches.noindex/watchos11.4-22T246-43efb940ff07ba2497b70ec94253f576.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
Copy /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/WebDriver.swiftmodule/arm64-apple-watchos.swiftdoc /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-webdriver.build/Debug-watchos/WebDriver.build/Objects-normal/arm64/WebDriver.swiftdoc (in target 'WebDriver' from project 'swift-webdriver')
cd /Users/admin/builder/spi-builder-workspace
builtin-copy -exclude .DS_Store -exclude CVS -exclude .svn -exclude .git -exclude .hg -resolve-src-symlinks -rename /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-webdriver.build/Debug-watchos/WebDriver.build/Objects-normal/arm64/WebDriver.swiftdoc /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/WebDriver.swiftmodule/arm64-apple-watchos.swiftdoc
SwiftMergeGeneratedHeaders /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/GeneratedModuleMaps-watchos/WebDriver-Swift.h /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-webdriver.build/Debug-watchos/WebDriver.build/Objects-normal/arm64/WebDriver-Swift.h /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-webdriver.build/Debug-watchos/WebDriver.build/Objects-normal/arm64_32/WebDriver-Swift.h /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-webdriver.build/Debug-watchos/WebDriver.build/Objects-normal/armv7k/WebDriver-Swift.h (in target 'WebDriver' from project 'swift-webdriver')
cd /Users/admin/builder/spi-builder-workspace
builtin-swiftHeaderTool -arch arm64 /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-webdriver.build/Debug-watchos/WebDriver.build/Objects-normal/arm64/WebDriver-Swift.h -arch arm64_32 /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-webdriver.build/Debug-watchos/WebDriver.build/Objects-normal/arm64_32/WebDriver-Swift.h -arch armv7k /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-webdriver.build/Debug-watchos/WebDriver.build/Objects-normal/armv7k/WebDriver-Swift.h -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/GeneratedModuleMaps-watchos/WebDriver-Swift.h
Copy /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/WebDriver.swiftmodule/arm64_32-apple-watchos.swiftmodule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-webdriver.build/Debug-watchos/WebDriver.build/Objects-normal/arm64_32/WebDriver.swiftmodule (in target 'WebDriver' from project 'swift-webdriver')
cd /Users/admin/builder/spi-builder-workspace
builtin-copy -exclude .DS_Store -exclude CVS -exclude .svn -exclude .git -exclude .hg -resolve-src-symlinks -rename /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-webdriver.build/Debug-watchos/WebDriver.build/Objects-normal/arm64_32/WebDriver.swiftmodule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/WebDriver.swiftmodule/arm64_32-apple-watchos.swiftmodule
Copy /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/WebDriver.swiftmodule/arm64_32-apple-watchos.swiftdoc /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-webdriver.build/Debug-watchos/WebDriver.build/Objects-normal/arm64_32/WebDriver.swiftdoc (in target 'WebDriver' from project 'swift-webdriver')
cd /Users/admin/builder/spi-builder-workspace
builtin-copy -exclude .DS_Store -exclude CVS -exclude .svn -exclude .git -exclude .hg -resolve-src-symlinks -rename /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-webdriver.build/Debug-watchos/WebDriver.build/Objects-normal/arm64_32/WebDriver.swiftdoc /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/WebDriver.swiftmodule/arm64_32-apple-watchos.swiftdoc
Copy /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/WebDriver.swiftmodule/arm64_32-apple-watchos.abi.json /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-webdriver.build/Debug-watchos/WebDriver.build/Objects-normal/arm64_32/WebDriver.abi.json (in target 'WebDriver' from project 'swift-webdriver')
cd /Users/admin/builder/spi-builder-workspace
builtin-copy -exclude .DS_Store -exclude CVS -exclude .svn -exclude .git -exclude .hg -resolve-src-symlinks -rename /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-webdriver.build/Debug-watchos/WebDriver.build/Objects-normal/arm64_32/WebDriver.abi.json /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/WebDriver.swiftmodule/arm64_32-apple-watchos.abi.json
Copy /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/WebDriver.swiftmodule/arm64-apple-watchos.abi.json /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-webdriver.build/Debug-watchos/WebDriver.build/Objects-normal/arm64/WebDriver.abi.json (in target 'WebDriver' from project 'swift-webdriver')
cd /Users/admin/builder/spi-builder-workspace
builtin-copy -exclude .DS_Store -exclude CVS -exclude .svn -exclude .git -exclude .hg -resolve-src-symlinks -rename /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-webdriver.build/Debug-watchos/WebDriver.build/Objects-normal/arm64/WebDriver.abi.json /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/WebDriver.swiftmodule/arm64-apple-watchos.abi.json
Copy /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/WebDriver.swiftmodule/Project/arm64_32-apple-watchos.swiftsourceinfo /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-webdriver.build/Debug-watchos/WebDriver.build/Objects-normal/arm64_32/WebDriver.swiftsourceinfo (in target 'WebDriver' from project 'swift-webdriver')
cd /Users/admin/builder/spi-builder-workspace
builtin-copy -exclude .DS_Store -exclude CVS -exclude .svn -exclude .git -exclude .hg -resolve-src-symlinks -rename /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-webdriver.build/Debug-watchos/WebDriver.build/Objects-normal/arm64_32/WebDriver.swiftsourceinfo /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/WebDriver.swiftmodule/Project/arm64_32-apple-watchos.swiftsourceinfo
Copy /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/WebDriver.swiftmodule/Project/arm64-apple-watchos.swiftsourceinfo /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-webdriver.build/Debug-watchos/WebDriver.build/Objects-normal/arm64/WebDriver.swiftsourceinfo (in target 'WebDriver' from project 'swift-webdriver')
cd /Users/admin/builder/spi-builder-workspace
builtin-copy -exclude .DS_Store -exclude CVS -exclude .svn -exclude .git -exclude .hg -resolve-src-symlinks -rename /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-webdriver.build/Debug-watchos/WebDriver.build/Objects-normal/arm64/WebDriver.swiftsourceinfo /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/WebDriver.swiftmodule/Project/arm64-apple-watchos.swiftsourceinfo
SwiftCompile normal arm64_32 Compiling\ TouchClickKind.swift,\ URLRequestExtensions.swift /Users/admin/builder/spi-builder-workspace/Sources/WebDriver/TouchClickKind.swift /Users/admin/builder/spi-builder-workspace/Sources/WebDriver/URLRequestExtensions.swift (in target 'WebDriver' from project 'swift-webdriver')
SwiftCompile normal arm64_32 /Users/admin/builder/spi-builder-workspace/Sources/WebDriver/TouchClickKind.swift (in target 'WebDriver' from project 'swift-webdriver')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64_32 /Users/admin/builder/spi-builder-workspace/Sources/WebDriver/URLRequestExtensions.swift (in target 'WebDriver' from project 'swift-webdriver')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
/Users/admin/builder/spi-builder-workspace/Sources/WebDriver/URLRequestExtensions.swift:14:17: warning: capture of 'completion' with non-sendable type '(Result<(Data, HTTPURLResponse), any Error>) -> Void' in a '@Sendable' closure
completion(.failure(error))
^
/Users/admin/builder/spi-builder-workspace/Sources/WebDriver/URLRequestExtensions.swift:14:17: note: a function type must be marked '@Sendable' to conform to 'Sendable'
completion(.failure(error))
^
SwiftCompile normal arm64 Compiling\ Requests+LegacySelenium.swift,\ Requests+W3C.swift /Users/admin/builder/spi-builder-workspace/Sources/WebDriver/Requests+LegacySelenium.swift /Users/admin/builder/spi-builder-workspace/Sources/WebDriver/Requests+W3C.swift (in target 'WebDriver' from project 'swift-webdriver')
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/WebDriver/Requests+LegacySelenium.swift (in target 'WebDriver' from project 'swift-webdriver')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/WebDriver/Requests+W3C.swift (in target 'WebDriver' from project 'swift-webdriver')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftDriverJobDiscovery normal arm64_32 Compiling Keys.swift, Location.swift, MouseButton.swift (in target 'WebDriver' from project 'swift-webdriver')
SwiftCompile normal arm64_32 Compiling\ Window.swift,\ WireProtocol.swift /Users/admin/builder/spi-builder-workspace/Sources/WebDriver/Window.swift /Users/admin/builder/spi-builder-workspace/Sources/WebDriver/WireProtocol.swift (in target 'WebDriver' from project 'swift-webdriver')
SwiftCompile normal arm64_32 /Users/admin/builder/spi-builder-workspace/Sources/WebDriver/Window.swift (in target 'WebDriver' from project 'swift-webdriver')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64_32 /Users/admin/builder/spi-builder-workspace/Sources/WebDriver/WireProtocol.swift (in target 'WebDriver' from project 'swift-webdriver')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftDriverJobDiscovery normal arm64 Compiling Requests+LegacySelenium.swift, Requests+W3C.swift (in target 'WebDriver' from project 'swift-webdriver')
SwiftCompile normal arm64_32 Compiling\ Requests+LegacySelenium.swift,\ Requests+W3C.swift /Users/admin/builder/spi-builder-workspace/Sources/WebDriver/Requests+LegacySelenium.swift /Users/admin/builder/spi-builder-workspace/Sources/WebDriver/Requests+W3C.swift (in target 'WebDriver' from project 'swift-webdriver')
SwiftCompile normal arm64_32 /Users/admin/builder/spi-builder-workspace/Sources/WebDriver/Requests+LegacySelenium.swift (in target 'WebDriver' from project 'swift-webdriver')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64_32 /Users/admin/builder/spi-builder-workspace/Sources/WebDriver/Requests+W3C.swift (in target 'WebDriver' from project 'swift-webdriver')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftDriverJobDiscovery normal arm64 Compiling TouchClickKind.swift, URLRequestExtensions.swift (in target 'WebDriver' from project 'swift-webdriver')
SwiftCompile normal arm64 Compiling\ WebDriver.swift,\ WebDriverStatus.swift /Users/admin/builder/spi-builder-workspace/Sources/WebDriver/WebDriver.swift /Users/admin/builder/spi-builder-workspace/Sources/WebDriver/WebDriverStatus.swift (in target 'WebDriver' from project 'swift-webdriver')
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/WebDriver/WebDriver.swift (in target 'WebDriver' from project 'swift-webdriver')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/WebDriver/WebDriverStatus.swift (in target 'WebDriver' from project 'swift-webdriver')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftDriverJobDiscovery normal arm64 Compiling Capabilities+AppiumOptions.swift, Capabilities.swift, Element.swift (in target 'WebDriver' from project 'swift-webdriver')
SwiftCompile normal arm64 Compiling\ Requests.swift,\ ScreenOrientation.swift /Users/admin/builder/spi-builder-workspace/Sources/WebDriver/Requests.swift /Users/admin/builder/spi-builder-workspace/Sources/WebDriver/ScreenOrientation.swift (in target 'WebDriver' from project 'swift-webdriver')
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
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/WebDriver/ScreenOrientation.swift (in target 'WebDriver' from project 'swift-webdriver')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftDriverJobDiscovery normal arm64 Compiling NoSuchElementError.swift, Poll.swift, Request.swift (in target 'WebDriver' from project 'swift-webdriver')
SwiftCompile normal armv7k Compiling\ NoSuchElementError.swift,\ Poll.swift,\ Request.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 (in target 'WebDriver' from project 'swift-webdriver')
SwiftCompile normal armv7k /Users/admin/builder/spi-builder-workspace/Sources/WebDriver/NoSuchElementError.swift (in target 'WebDriver' from project 'swift-webdriver')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
/Users/admin/builder/spi-builder-workspace/Sources/WebDriver/NoSuchElementError.swift:4:16: warning: stored property 'locator' of 'Sendable'-conforming struct 'NoSuchElementError' has non-sendable type 'ElementLocator'; this is an error in the Swift 6 language mode
public var locator: ElementLocator
^
/Users/admin/builder/spi-builder-workspace/Sources/WebDriver/ElementLocator.swift:2:15: note: consider making struct 'ElementLocator' conform to the 'Sendable' protocol
public struct ElementLocator: Codable, Hashable {
^
, Sendable
SwiftCompile normal armv7k /Users/admin/builder/spi-builder-workspace/Sources/WebDriver/Poll.swift (in target 'WebDriver' from project 'swift-webdriver')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal armv7k /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
SwiftDriverJobDiscovery normal arm64 Compiling Session.swift, TimeoutType.swift (in target 'WebDriver' from project 'swift-webdriver')
SwiftCompile normal arm64_32 Compiling\ Requests.swift,\ ScreenOrientation.swift /Users/admin/builder/spi-builder-workspace/Sources/WebDriver/Requests.swift /Users/admin/builder/spi-builder-workspace/Sources/WebDriver/ScreenOrientation.swift (in target 'WebDriver' from project 'swift-webdriver')
SwiftCompile normal arm64_32 /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
SwiftCompile normal arm64_32 /Users/admin/builder/spi-builder-workspace/Sources/WebDriver/ScreenOrientation.swift (in target 'WebDriver' from project 'swift-webdriver')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftDriverJobDiscovery normal arm64 Compiling ElementLocator.swift, ErrorResponse.swift, HTTPWebDriver.swift (in target 'WebDriver' from project 'swift-webdriver')
SwiftCompile normal arm64_32 Compiling\ Capabilities+AppiumOptions.swift,\ Capabilities.swift,\ Element.swift /Users/admin/builder/spi-builder-workspace/Sources/WebDriver/Capabilities+AppiumOptions.swift /Users/admin/builder/spi-builder-workspace/Sources/WebDriver/Capabilities.swift /Users/admin/builder/spi-builder-workspace/Sources/WebDriver/Element.swift (in target 'WebDriver' from project 'swift-webdriver')
SwiftCompile normal arm64_32 /Users/admin/builder/spi-builder-workspace/Sources/WebDriver/Capabilities+AppiumOptions.swift (in target 'WebDriver' from project 'swift-webdriver')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64_32 /Users/admin/builder/spi-builder-workspace/Sources/WebDriver/Capabilities.swift (in target 'WebDriver' from project 'swift-webdriver')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64_32 /Users/admin/builder/spi-builder-workspace/Sources/WebDriver/Element.swift (in target 'WebDriver' from project 'swift-webdriver')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftDriverJobDiscovery normal arm64_32 Compiling Window.swift, WireProtocol.swift (in target 'WebDriver' from project 'swift-webdriver')
SwiftCompile normal arm64_32 Compiling\ WebDriver.swift,\ WebDriverStatus.swift /Users/admin/builder/spi-builder-workspace/Sources/WebDriver/WebDriver.swift /Users/admin/builder/spi-builder-workspace/Sources/WebDriver/WebDriverStatus.swift (in target 'WebDriver' from project 'swift-webdriver')
SwiftCompile normal arm64_32 /Users/admin/builder/spi-builder-workspace/Sources/WebDriver/WebDriver.swift (in target 'WebDriver' from project 'swift-webdriver')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64_32 /Users/admin/builder/spi-builder-workspace/Sources/WebDriver/WebDriverStatus.swift (in target 'WebDriver' from project 'swift-webdriver')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftDriverJobDiscovery normal arm64_32 Compiling TouchClickKind.swift, URLRequestExtensions.swift (in target 'WebDriver' from project 'swift-webdriver')
SwiftCompile normal arm64 Compiling\ Window.swift,\ WireProtocol.swift /Users/admin/builder/spi-builder-workspace/Sources/WebDriver/Window.swift /Users/admin/builder/spi-builder-workspace/Sources/WebDriver/WireProtocol.swift (in target 'WebDriver' from project 'swift-webdriver')
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/WebDriver/Window.swift (in target 'WebDriver' from project 'swift-webdriver')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/WebDriver/WireProtocol.swift (in target 'WebDriver' from project 'swift-webdriver')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftDriverJobDiscovery normal armv7k Compiling NoSuchElementError.swift, Poll.swift, Request.swift (in target 'WebDriver' from project 'swift-webdriver')
SwiftDriverJobDiscovery normal arm64 Compiling WebDriver.swift, WebDriverStatus.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.3.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 -enable-upcoming-feature StrictConcurrency -enable-upcoming-feature DisableOutwardActorInference -enable-upcoming-feature GlobalActorIsolatedTypesUsability -enable-upcoming-feature InferSendableFromCaptures -plugin-path /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/plugins/testing -enable-experimental-feature DebugDescriptionMacro -sdk /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS11.4.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 -swift-version 5 -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -I /Applications/Xcode-16.3.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.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/Library/Frameworks -F /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS11.4.sdk/Developer/Library/Frameworks -c -j10 -enable-batch-mode -incremental -Xcc -ivfsstatcache -Xcc /Users/admin/builder/spi-builder-workspace/.derivedData/SDKStatCaches.noindex/watchos11.4-22T246-43efb940ff07ba2497b70ec94253f576.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.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -Xlinker -reproducible -target armv7k-apple-watchos5.0 -r -isysroot /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS11.4.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.3.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.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/Library/Frameworks -iframework /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS11.4.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 -rdynamic -Xlinker -no_deduplicate -Xlinker -debug_variant -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 -fobjc-link-runtime -L/Applications/Xcode-16.3.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 -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_32 Compiling NoSuchElementError.swift, Poll.swift, Request.swift (in target 'WebDriver' from project 'swift-webdriver')
SwiftDriverJobDiscovery normal arm64_32 Compiling ElementLocator.swift, ErrorResponse.swift, HTTPWebDriver.swift (in target 'WebDriver' from project 'swift-webdriver')
SwiftDriverJobDiscovery normal arm64_32 Compiling Session.swift, TimeoutType.swift (in target 'WebDriver' from project 'swift-webdriver')
SwiftDriverJobDiscovery normal arm64_32 Compiling Requests+LegacySelenium.swift, Requests+W3C.swift (in target 'WebDriver' from project 'swift-webdriver')
SwiftDriverJobDiscovery normal arm64 Compiling Window.swift, WireProtocol.swift (in target 'WebDriver' from project 'swift-webdriver')
SwiftDriverJobDiscovery normal arm64_32 Compiling Capabilities+AppiumOptions.swift, Capabilities.swift, Element.swift (in target 'WebDriver' from project 'swift-webdriver')
SwiftDriverJobDiscovery normal arm64_32 Compiling WebDriver.swift, WebDriverStatus.swift (in target 'WebDriver' from project 'swift-webdriver')
SwiftDriverJobDiscovery normal arm64 Compiling Requests.swift, ScreenOrientation.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.3.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 -enable-upcoming-feature StrictConcurrency -enable-upcoming-feature DisableOutwardActorInference -enable-upcoming-feature GlobalActorIsolatedTypesUsability -enable-upcoming-feature InferSendableFromCaptures -plugin-path /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/plugins/testing -enable-experimental-feature DebugDescriptionMacro -sdk /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS11.4.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 -swift-version 5 -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -I /Applications/Xcode-16.3.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.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/Library/Frameworks -F /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS11.4.sdk/Developer/Library/Frameworks -c -j10 -enable-batch-mode -incremental -Xcc -ivfsstatcache -Xcc /Users/admin/builder/spi-builder-workspace/.derivedData/SDKStatCaches.noindex/watchos11.4-22T246-43efb940ff07ba2497b70ec94253f576.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.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -Xlinker -reproducible -target arm64-apple-watchos5.0 -r -isysroot /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS11.4.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.3.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.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/Library/Frameworks -iframework /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS11.4.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 -rdynamic -Xlinker -no_deduplicate -Xlinker -debug_variant -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 -fobjc-link-runtime -L/Applications/Xcode-16.3.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 -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-webdriver.build/Debug-watchos/WebDriver.build/Objects-normal/arm64/Binary/WebDriver.o
SwiftDriverJobDiscovery normal arm64_32 Compiling Requests.swift, ScreenOrientation.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.3.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 -enable-upcoming-feature StrictConcurrency -enable-upcoming-feature DisableOutwardActorInference -enable-upcoming-feature GlobalActorIsolatedTypesUsability -enable-upcoming-feature InferSendableFromCaptures -plugin-path /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/plugins/testing -enable-experimental-feature DebugDescriptionMacro -sdk /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS11.4.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 -swift-version 5 -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -I /Applications/Xcode-16.3.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.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/Library/Frameworks -F /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS11.4.sdk/Developer/Library/Frameworks -c -j10 -enable-batch-mode -incremental -Xcc -ivfsstatcache -Xcc /Users/admin/builder/spi-builder-workspace/.derivedData/SDKStatCaches.noindex/watchos11.4-22T246-43efb940ff07ba2497b70ec94253f576.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.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -Xlinker -reproducible -target arm64_32-apple-watchos5.0 -r -isysroot /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS11.4.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.3.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.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/Library/Frameworks -iframework /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS11.4.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 -rdynamic -Xlinker -no_deduplicate -Xlinker -debug_variant -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 -fobjc-link-runtime -L/Applications/Xcode-16.3.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 -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
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.3.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
ExtractAppIntentsMetadata (in target 'WebDriver' from project 'swift-webdriver')
cd /Users/admin/builder/spi-builder-workspace
/Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/appintentsmetadataprocessor --toolchain-dir /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain --module-name WebDriver --sdk-root /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS11.4.sdk --xcode-version 16E140 --platform-family watchOS --deployment-target 5.0 --bundle-identifier spi-builder-workspace.WebDriver --output /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/WebDriver.appintents --target-triple arm64-apple-watchos5.0 --target-triple armv7k-apple-watchos5.0 --target-triple arm64_32-apple-watchos5.0 --binary-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/WebDriver.o --dependency-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-webdriver.build/Debug-watchos/WebDriver.build/Objects-normal/arm64/WebDriver_dependency_info.dat --dependency-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-webdriver.build/Debug-watchos/WebDriver.build/Objects-normal/armv7k/WebDriver_dependency_info.dat --dependency-file /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 --stringsdata-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-webdriver.build/Debug-watchos/WebDriver.build/Objects-normal/arm64/ExtractedAppShortcutsMetadata.stringsdata --stringsdata-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-webdriver.build/Debug-watchos/WebDriver.build/Objects-normal/armv7k/ExtractedAppShortcutsMetadata.stringsdata --stringsdata-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-webdriver.build/Debug-watchos/WebDriver.build/Objects-normal/arm64_32/ExtractedAppShortcutsMetadata.stringsdata --source-file-list /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-webdriver.build/Debug-watchos/WebDriver.build/Objects-normal/arm64/WebDriver.SwiftFileList --source-file-list /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-webdriver.build/Debug-watchos/WebDriver.build/Objects-normal/armv7k/WebDriver.SwiftFileList --source-file-list /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-webdriver.build/Debug-watchos/WebDriver.build/Objects-normal/arm64_32/WebDriver.SwiftFileList --metadata-file-list /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-webdriver.build/Debug-watchos/WebDriver.build/WebDriver.DependencyMetadataFileList --static-metadata-file-list /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-webdriver.build/Debug-watchos/WebDriver.build/WebDriver.DependencyStaticMetadataFileList --swift-const-vals-list /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-webdriver.build/Debug-watchos/WebDriver.build/Objects-normal/arm64/WebDriver.SwiftConstValuesFileList --swift-const-vals-list /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-webdriver.build/Debug-watchos/WebDriver.build/Objects-normal/armv7k/WebDriver.SwiftConstValuesFileList --swift-const-vals-list /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-webdriver.build/Debug-watchos/WebDriver.build/Objects-normal/arm64_32/WebDriver.SwiftConstValuesFileList --force --compile-time-extraction --deployment-aware-processing --validate-assistant-intents --no-app-shortcuts-localization
2025-05-02 14:23:16.933 appintentsmetadataprocessor[746:4327] Starting appintentsmetadataprocessor export
2025-05-02 14:23:16.977 appintentsmetadataprocessor[746:4327] Extracted no relevant App Intents symbols, skipping writing output
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+AppiumOptions.swift",
"Capabilities.swift",
"Element.swift",
"ElementLocator.swift",
"ErrorResponse.swift",
"HTTPWebDriver.swift",
"Keys.swift",
"Location.swift",
"MouseButton.swift",
"NoSuchElementError.swift",
"Poll.swift",
"Request.swift",
"Requests+LegacySelenium.swift",
"Requests+W3C.swift",
"Requests.swift",
"ScreenOrientation.swift",
"Session.swift",
"TimeoutType.swift",
"TouchClickKind.swift",
"URLRequestExtensions.swift",
"WebDriver.swift",
"WebDriverStatus.swift",
"Window.swift",
"WireProtocol.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"
},
{
"c99name" : "AppiumTests",
"module_type" : "SwiftTarget",
"name" : "AppiumTests",
"path" : "Tests/AppiumTests",
"sources" : [
"AppiumTests.swift"
],
"target_dependencies" : [
"TestsCommon",
"WebDriver"
],
"type" : "test"
}
],
"tools_version" : "5.8"
}
Done.