appium-espresso-driver 2.0.0 → 2.0.1
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/README.md +5 -1
- package/build/index.js +5 -3
- package/build/lib/driver.js +2 -2
- package/espresso-server/app/build/outputs/apk/androidTest/debug/app-debug-androidTest.apk +0 -0
- package/lib/driver.js +1 -1
- package/npm-shrinkwrap.json +16514 -0
- package/package.json +4 -6
- package/CHANGELOG.md +0 -23
package/package.json
CHANGED
|
@@ -7,7 +7,7 @@
|
|
|
7
7
|
"automated testing",
|
|
8
8
|
"android"
|
|
9
9
|
],
|
|
10
|
-
"version": "2.0.
|
|
10
|
+
"version": "2.0.1",
|
|
11
11
|
"author": "appium",
|
|
12
12
|
"license": "Apache-2.0",
|
|
13
13
|
"repository": {
|
|
@@ -86,23 +86,21 @@
|
|
|
86
86
|
"devDependencies": {
|
|
87
87
|
"@appium/gulp-plugins": "^6.0.0",
|
|
88
88
|
"@appium/eslint-config-appium": "^5.0.0",
|
|
89
|
+
"@semantic-release/git": "^10.0.1",
|
|
89
90
|
"@xmldom/xmldom": "^0.x",
|
|
90
91
|
"android-apidemos": "^4.0.0",
|
|
91
92
|
"appium-chromedriver": "^5.0.0",
|
|
92
93
|
"async-lock": "^1.0.0",
|
|
93
94
|
"chai": "^4.1.2",
|
|
94
95
|
"chai-as-promised": "^7.1.1",
|
|
95
|
-
"eslint": "^7.32.0",
|
|
96
|
-
"eslint-plugin-import": "^2.25.3",
|
|
97
|
-
"eslint-plugin-mocha": "^9.0.0",
|
|
98
|
-
"eslint-plugin-promise": "^6.0.0",
|
|
99
96
|
"gps-demo-app": "^2.1.1",
|
|
100
97
|
"gulp": "^4.0.0",
|
|
101
98
|
"mocha": "^9.0.0",
|
|
102
99
|
"mocha-junit-reporter": "^2.0.0",
|
|
103
100
|
"mocha-multi-reporters": "^1.1.7",
|
|
104
101
|
"pre-commit": "^1.2.2",
|
|
105
|
-
"
|
|
102
|
+
"semantic-release": "^19.0.2",
|
|
103
|
+
"sinon": "^13.0.0",
|
|
106
104
|
"webdriverio": "^7.0.0",
|
|
107
105
|
"xpath": "^0.x"
|
|
108
106
|
}
|
package/CHANGELOG.md
DELETED
|
@@ -1,23 +0,0 @@
|
|
|
1
|
-
## [1.0.0-beta.3](https://github.com/appium/appium-espresso-driver/compare/v1.0.0-beta.2...v1.0.0-beta.3) (2017-06-16)
|
|
2
|
-
|
|
3
|
-
### Changes
|
|
4
|
-
* Fix: Throws exception if element is stale (#56)
|
|
5
|
-
* Feature: Add text attribute to source xml (#52)
|
|
6
|
-
* Feature: Implemented the /element/:elementId/text endpoint (#53)
|
|
7
|
-
* Feature: Can match list of XPaths instead of just one (#54)
|
|
8
|
-
* Feature: Added handler for /elements endpoint (#55)
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
## [1.0.0-beta.2](https://github.com/appium/appium-espresso-driver/compare/v1.0.0-beta.1...v1.0.0-beta.2) (2017-06-09)
|
|
12
|
-
|
|
13
|
-
### Changes
|
|
14
|
-
* Fix: Sanitize XML inputs. Bad characters and tag names were breaking the XML (#50)
|
|
15
|
-
|
|
16
|
-
## [1.0.0-beta.1](https://github.com/appium/appium-espresso-driver/compare/7a309d3...v1.0.0-beta.1) (2017-06-08)
|
|
17
|
-
|
|
18
|
-
### Changes
|
|
19
|
-
* Feature: Implemented NanoHTTPD Java server that runs inside of Android and follows the MJSONWP standard
|
|
20
|
-
* Feature: Implemented NodeJS driver that launches the Java server and proxies requests to that server
|
|
21
|
-
* Feature: Can locate elements with the selector strategies xpath, class, id, text, accessibility id
|
|
22
|
-
* Feature: Created /session, /status, /source, /screenshot, /back endpoints
|
|
23
|
-
* Feature: Added handling for every MJSONWP endpoint, return NotYetImplemented for unimplemented handlers
|