-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathScripts.swift
58 lines (49 loc) · 1.37 KB
/
Scripts.swift
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
//
// Scripts.swift
// Sky
//
import Foundation
class Scripts {
static func clickByAriaLabel(_ ariaLabel: String) -> String {
return JsLoader.loadScriptContents(
"Scripts/click_by_aria_label", ["aria_label": ariaLabel]
)
}
static func escGoesBack() -> String {
return JsLoader.loadScriptContents(
"Scripts/esc_goes_back", [:]
)
}
static func navigateNavbar(
checkLoadNew: Bool,
label: String,
index: Int,
url: String?
) -> String {
return JsLoader.loadScriptContents(
"Scripts/navigate_navbar", [
"check_load_new": checkLoadNew ? "true" : "false",
"index": "\(index)",
"label": label,
"url": url ?? "",
]
)
}
static func navigateTab(direction: Int) -> String {
return JsLoader.loadScriptContents(
"Scripts/navigate_tab",
["direction": "\(direction)"]
)
}
static func localStorageSetItem(key: String, value: String) -> String {
return JsLoader.loadScriptContents(
"Scripts/local_storage_set_item",
["key": key, "value": value]
)
}
static func focusSearch() -> String {
return JsLoader.loadScriptContents(
"Scripts/focus_search", [:]
)
}
}