Skip to content

Commit c8ed2ac

Browse files
committed
test
1 parent da1479a commit c8ed2ac

File tree

3 files changed

+61
-34
lines changed

3 files changed

+61
-34
lines changed

Example/Package.resolved

+29-2
Original file line numberDiff line numberDiff line change
@@ -45,6 +45,24 @@
4545
"version" : "1.1.4"
4646
}
4747
},
48+
{
49+
"identity" : "swift-http-structured-headers",
50+
"kind" : "remoteSourceControl",
51+
"location" : "https://github.com/apple/swift-http-structured-headers.git",
52+
"state" : {
53+
"revision" : "8e769facea6b7d46ea60e5e93635a384fd573480",
54+
"version" : "1.2.1"
55+
}
56+
},
57+
{
58+
"identity" : "swift-http-types",
59+
"kind" : "remoteSourceControl",
60+
"location" : "https://github.com/apple/swift-http-types.git",
61+
"state" : {
62+
"revision" : "ef18d829e8b92d731ad27bb81583edd2094d1ce3",
63+
"version" : "1.3.1"
64+
}
65+
},
4866
{
4967
"identity" : "swift-log",
5068
"kind" : "remoteSourceControl",
@@ -68,8 +86,8 @@
6886
"kind" : "remoteSourceControl",
6987
"location" : "https://github.com/apple/swift-nio-extras.git",
7088
"state" : {
71-
"revision" : "fb70a0f5e984f23be48b11b4f1909f3bee016178",
72-
"version" : "1.19.1"
89+
"revision" : "00f3f72d2f9942d0e2dc96057ab50a37ced150d4",
90+
"version" : "1.25.0"
7391
}
7492
},
7593
{
@@ -116,6 +134,15 @@
116134
"revision" : "a34201439c74b53f0fd71ef11741af7e7caf01e1",
117135
"version" : "1.4.2"
118136
}
137+
},
138+
{
139+
"identity" : "swiftwebdriver",
140+
"kind" : "remoteSourceControl",
141+
"location" : "https://github.com/GetAutomaApp/SwiftWebDriver.git",
142+
"state" : {
143+
"branch" : "master",
144+
"revision" : "000f8fce2c2383aadc2d85f7d723a1f124b0d00f"
145+
}
119146
}
120147
],
121148
"version" : 2

Example/Package.swift

+1-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ let package = Package(
99
.macOS(.v12),
1010
],
1111
dependencies: [
12-
.package(url: "https://github.com/GetAutomaApp/SwiftWebDriver.git", branch: "master")
12+
.package(url: "https://github.com/GetAutomaApp/SwiftWebDriver.git", from: "0.2.0")
1313
],
1414
targets: [
1515
.executableTarget(
Original file line numberDiff line numberDiff line change
@@ -1,36 +1,36 @@
1-
// main.swift
2-
// Copyright (c) 2025 GetAutomaApp
3-
// All source code and related assets are the property of GetAutomaApp.
4-
// All rights reserved.
5-
//
6-
// This package is freely distributable under the MIT license.
7-
// This Package is a modified fork of https://github.com/ashi-psn/SwiftWebDriver.
1+
// // main.swift
2+
// // Copyright (c) 2025 GetAutomaApp
3+
// // All source code and related assets are the property of GetAutomaApp.
4+
// // All rights reserved.
5+
// //
6+
// // This package is freely distributable under the MIT license.
7+
// // This Package is a modified fork of https://github.com/ashi-psn/SwiftWebDriver.
88

9-
import SwiftWebDriver
9+
// import SwiftWebDriver
1010

11-
let chromeOption = try ChromeOptions(
12-
args: [
13-
Args(.headless),
14-
]
15-
)
11+
// let chromeOption = try ChromeOptions(
12+
// args: [
13+
// Args(.headless),
14+
// ]
15+
// )
1616

17-
let chromeDriver = try ChromeDriver(
18-
driverURLString: "http://localhost:9515",
19-
browserObject: chromeOption
20-
)
17+
// let chromeDriver = try ChromeDriver(
18+
// driverURLString: "http://localhost:9515",
19+
// browserObject: chromeOption
20+
// )
2121

22-
let driver = WebDriver(
23-
driver: chromeDriver
24-
)
22+
// let driver = WebDriver(
23+
// driver: chromeDriver
24+
// )
2525

26-
Task.detached {
27-
do {
28-
let status = try await driver.status()
29-
print(status)
30-
let sessionId = try await driver.start()
31-
print(sessionId)
32-
try await driver.stop()
33-
} catch {
34-
print(error)
35-
}
36-
}
26+
// Task.detached {
27+
// do {
28+
// let status = try await driver.status()
29+
// print(status)
30+
// let sessionId = try await driver.start()
31+
// print(sessionId)
32+
// try await driver.stop()
33+
// } catch {
34+
// print(error)
35+
// }
36+
// }

0 commit comments

Comments
 (0)