@wdio/protocols 9.14.0 → 9.16.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/build/commands/appium.d.ts +56 -7
- package/build/commands/appium.d.ts.map +1 -1
- package/build/commands/mjsonwp.d.ts +1 -1
- package/build/commands/mjsonwp.d.ts.map +1 -1
- package/build/commands/saucelabs.d.ts +1 -1
- package/build/commands/saucelabs.d.ts.map +1 -1
- package/build/commands/webdriver.d.ts +3 -3
- package/build/commands/webdriver.d.ts.map +1 -1
- package/build/index.js +1728 -1690
- package/build/protocols/appium.d.ts +83 -27
- package/build/protocols/appium.d.ts.map +1 -1
- package/package.json +2 -2
|
@@ -1,4 +1,18 @@
|
|
|
1
1
|
declare const _default: {
|
|
2
|
+
'/session/:sessionId': {
|
|
3
|
+
GET: {
|
|
4
|
+
command: string;
|
|
5
|
+
description: string;
|
|
6
|
+
ref: string;
|
|
7
|
+
deprecated: string;
|
|
8
|
+
parameters: never[];
|
|
9
|
+
returns: {
|
|
10
|
+
type: string;
|
|
11
|
+
name: string;
|
|
12
|
+
description: string;
|
|
13
|
+
};
|
|
14
|
+
};
|
|
15
|
+
};
|
|
2
16
|
'/session/:sessionId/context': {
|
|
3
17
|
GET: {
|
|
4
18
|
command: string;
|
|
@@ -33,6 +47,45 @@ declare const _default: {
|
|
|
33
47
|
};
|
|
34
48
|
};
|
|
35
49
|
};
|
|
50
|
+
'/session/:sessionId/appium/commands': {
|
|
51
|
+
GET: {
|
|
52
|
+
command: string;
|
|
53
|
+
description: string;
|
|
54
|
+
ref: string;
|
|
55
|
+
parameters: never[];
|
|
56
|
+
returns: {
|
|
57
|
+
type: string;
|
|
58
|
+
name: string;
|
|
59
|
+
description: string;
|
|
60
|
+
};
|
|
61
|
+
};
|
|
62
|
+
};
|
|
63
|
+
'/session/:sessionId/appium/extensions': {
|
|
64
|
+
GET: {
|
|
65
|
+
command: string;
|
|
66
|
+
description: string;
|
|
67
|
+
ref: string;
|
|
68
|
+
parameters: never[];
|
|
69
|
+
returns: {
|
|
70
|
+
type: string;
|
|
71
|
+
name: string;
|
|
72
|
+
description: string;
|
|
73
|
+
};
|
|
74
|
+
};
|
|
75
|
+
};
|
|
76
|
+
'/session/:sessionId/appium/capabilities': {
|
|
77
|
+
GET: {
|
|
78
|
+
command: string;
|
|
79
|
+
description: string;
|
|
80
|
+
ref: string;
|
|
81
|
+
parameters: never[];
|
|
82
|
+
returns: {
|
|
83
|
+
type: string;
|
|
84
|
+
name: string;
|
|
85
|
+
description: string;
|
|
86
|
+
};
|
|
87
|
+
};
|
|
88
|
+
};
|
|
36
89
|
'/session/:sessionId/appium/device/shake': {
|
|
37
90
|
POST: {
|
|
38
91
|
command: string;
|
|
@@ -384,17 +437,12 @@ declare const _default: {
|
|
|
384
437
|
command: string;
|
|
385
438
|
description: string;
|
|
386
439
|
ref: string;
|
|
387
|
-
parameters:
|
|
440
|
+
parameters: {
|
|
388
441
|
name: string;
|
|
389
442
|
type: string;
|
|
390
443
|
description: string;
|
|
391
444
|
required: boolean;
|
|
392
|
-
}
|
|
393
|
-
name: string;
|
|
394
|
-
type: string;
|
|
395
|
-
description: string;
|
|
396
|
-
required?: undefined;
|
|
397
|
-
})[];
|
|
445
|
+
}[];
|
|
398
446
|
support: {
|
|
399
447
|
ios: {
|
|
400
448
|
XCUITest: string;
|
|
@@ -1725,7 +1773,18 @@ declare const _default: {
|
|
|
1725
1773
|
};
|
|
1726
1774
|
};
|
|
1727
1775
|
};
|
|
1728
|
-
'/session/:sessionId/
|
|
1776
|
+
'/session/:sessionId/location': {
|
|
1777
|
+
GET: {
|
|
1778
|
+
command: string;
|
|
1779
|
+
description: string;
|
|
1780
|
+
ref: string;
|
|
1781
|
+
parameters: never[];
|
|
1782
|
+
returns: {
|
|
1783
|
+
type: string;
|
|
1784
|
+
name: string;
|
|
1785
|
+
description: string;
|
|
1786
|
+
};
|
|
1787
|
+
};
|
|
1729
1788
|
POST: {
|
|
1730
1789
|
command: string;
|
|
1731
1790
|
description: string;
|
|
@@ -1736,40 +1795,37 @@ declare const _default: {
|
|
|
1736
1795
|
description: string;
|
|
1737
1796
|
required: boolean;
|
|
1738
1797
|
}[];
|
|
1798
|
+
};
|
|
1799
|
+
};
|
|
1800
|
+
"/session/:sessionId/se/log/types": {
|
|
1801
|
+
GET: {
|
|
1802
|
+
command: string;
|
|
1803
|
+
description: string;
|
|
1804
|
+
ref: string;
|
|
1805
|
+
parameters: never[];
|
|
1739
1806
|
returns: {
|
|
1740
1807
|
type: string;
|
|
1741
1808
|
name: string;
|
|
1742
1809
|
description: string;
|
|
1743
1810
|
};
|
|
1744
|
-
support: {
|
|
1745
|
-
android: {
|
|
1746
|
-
UiAutomator: string;
|
|
1747
|
-
};
|
|
1748
|
-
ios: {
|
|
1749
|
-
XCUITest: string;
|
|
1750
|
-
};
|
|
1751
|
-
};
|
|
1752
1811
|
};
|
|
1753
1812
|
};
|
|
1754
|
-
|
|
1755
|
-
|
|
1813
|
+
"/session/:sessionId/se/log": {
|
|
1814
|
+
POST: {
|
|
1756
1815
|
command: string;
|
|
1757
1816
|
description: string;
|
|
1758
1817
|
ref: string;
|
|
1759
|
-
parameters:
|
|
1818
|
+
parameters: {
|
|
1819
|
+
name: string;
|
|
1820
|
+
type: string;
|
|
1821
|
+
description: string;
|
|
1822
|
+
required: boolean;
|
|
1823
|
+
}[];
|
|
1760
1824
|
returns: {
|
|
1761
1825
|
type: string;
|
|
1762
1826
|
name: string;
|
|
1763
1827
|
description: string;
|
|
1764
1828
|
};
|
|
1765
|
-
support: {
|
|
1766
|
-
android: {
|
|
1767
|
-
UiAutomator: string;
|
|
1768
|
-
};
|
|
1769
|
-
ios: {
|
|
1770
|
-
XCUITest: string;
|
|
1771
|
-
};
|
|
1772
|
-
};
|
|
1773
1829
|
};
|
|
1774
1830
|
};
|
|
1775
1831
|
};
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"appium.d.ts","sourceRoot":"","sources":["../../src/protocols/appium.ts"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"appium.d.ts","sourceRoot":"","sources":["../../src/protocols/appium.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AAUA,wBA6wEC"}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@wdio/protocols",
|
|
3
|
-
"version": "9.
|
|
3
|
+
"version": "9.16.0",
|
|
4
4
|
"description": "Utility package providing information about automation protocols",
|
|
5
5
|
"author": "Christian Bromann <mail@bromann.dev>",
|
|
6
6
|
"homepage": "https://github.com/webdriverio/webdriverio/tree/main/packages/wdio-protocols",
|
|
@@ -29,5 +29,5 @@
|
|
|
29
29
|
"publishConfig": {
|
|
30
30
|
"access": "public"
|
|
31
31
|
},
|
|
32
|
-
"gitHead": "
|
|
32
|
+
"gitHead": "a4539d01aeee8ab9580a99321a235088d69bd17a"
|
|
33
33
|
}
|