Skip to content

Commit 1dcfb5d

Browse files
chrisdavidmillsmlbrgl
authored andcommitted
Add initial WebDriver data (mdn#1417)
1 parent 20648e4 commit 1dcfb5d

File tree

5 files changed

+68
-0
lines changed

5 files changed

+68
-0
lines changed

README.md

+2
Original file line numberDiff line numberDiff line change
@@ -48,6 +48,8 @@ JSON file containing the compatibility data.
4848

4949
- [javascript/](https://github.com/mdn/browser-compat-data/tree/master/javascript) contains data for [JavaScript](https://developer.mozilla.org/en-US/docs/Web/JavaScript) built-in Objects, statement, operators and or other ECMAScript language features.
5050

51+
- [webdriver/](https://github.com/mdn/browser-compat-data/tree/master/webdriver) contains data for [WebDriver](https://developer.mozilla.org/en-US/docs/Web/WebDriver) commands.
52+
5153
- [webextensions/](https://github.com/mdn/browser-compat-data/tree/master/webextensions) contains data for [WebExtensions](https://developer.mozilla.org/en-US/Add-ons/WebExtensions) JavaScript APIs and manifest keys.
5254

5355
- [svg/](https://github.com/mdn/browser-compat-data/tree/master/svg) contains data for [SVG](https://developer.mozilla.org/en-US/docs/Web/SVG) elements, attributes and global attributes.

index.js

+1
Original file line numberDiff line numberDiff line change
@@ -38,5 +38,6 @@ module.exports = load(
3838
'http',
3939
'javascript',
4040
'svg',
41+
'webdriver',
4142
'webextensions'
4243
);

schemas/compat-data-schema.md

+2
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,8 @@ JSON file containing the compatibility data.
1919

2020
- [javascript/](https://github.com/mdn/browser-compat-data/tree/master/javascript) contains data for [JavaScript](https://developer.mozilla.org/en-US/docs/Web/JavaScript) built-in Objects, statement, operators and or other ECMAScript language features.
2121

22+
- [webdriver/](https://github.com/mdn/browser-compat-data/tree/master/webdriver) contains data for [WebDriver](https://developer.mozilla.org/en-US/docs/Web/WebDriver) commands.
23+
2224
- [webextensions/](https://github.com/mdn/browser-compat-data/tree/master/webextensions) contains data for [WebExtensions](https://developer.mozilla.org/en-US/Add-ons/WebExtensions) JavaScript APIs and manifest keys.
2325

2426
- [svg/](https://github.com/mdn/browser-compat-data/tree/master/svg) contains data for [SVG](https://developer.mozilla.org/en-US/docs/Web/SVG) elements, attributes and global attributes.

test/lint.js

+1
Original file line numberDiff line numberDiff line change
@@ -49,6 +49,7 @@ if (process.argv[2]) {
4949
'svg',
5050
'javascript',
5151
'test',
52+
'webdriver',
5253
'webextensions'
5354
);
5455
}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,62 @@
1+
{
2+
"webdriver": {
3+
"commands": {
4+
"Get_Element_Tag_Name": {
5+
"__compat": {
6+
"mdn_url": "https://developer.mozilla.org/docs/Web/WebDriver/Commands/Get_Element_Tag_Name",
7+
"support": {
8+
"webview_android": {
9+
"version_added": false,
10+
"notes": "To enable Chromium support, include <code>{\"goog:chromeOptions\": {\"w3c\": true}}</code> in the capabiliites when running the command."
11+
},
12+
"chrome": {
13+
"version_added": false,
14+
"notes": "To enable Chromium support, include <code>{\"goog:chromeOptions\": {\"w3c\": true}}</code> in the capabiliites when running the command."
15+
},
16+
"chrome_android": {
17+
"version_added": false,
18+
"notes": "To enable Chromium support, include <code>{\"goog:chromeOptions\": {\"w3c\": true}}</code> in the capabiliites when running the command."
19+
},
20+
"edge": {
21+
"version_added": false
22+
},
23+
"edge_mobile": {
24+
"version_added": false
25+
},
26+
"firefox": {
27+
"version_added": "55"
28+
},
29+
"firefox_android": {
30+
"version_added": false
31+
},
32+
"ie": {
33+
"version_added": "6"
34+
},
35+
"opera": {
36+
"version_added": false,
37+
"notes": "To enable Chromium support, include <code>{\"goog:chromeOptions\": {\"w3c\": true}}</code> in the capabiliites when running the command."
38+
},
39+
"opera_android": {
40+
"version_added": false,
41+
"notes": "To enable Chromium support, include <code>{\"goog:chromeOptions\": {\"w3c\": true}}</code> in the capabiliites when running the command."
42+
},
43+
"safari": {
44+
"version_added": false
45+
},
46+
"safari_ios": {
47+
"version_added": false
48+
},
49+
"samsunginternet_android": {
50+
"version_added": true
51+
}
52+
},
53+
"status": {
54+
"experimental": false,
55+
"standard_track": true,
56+
"deprecated": false
57+
}
58+
}
59+
}
60+
}
61+
}
62+
}

0 commit comments

Comments
 (0)