@applitools/driver 1.9.25 → 1.9.26
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/dist/element.js +1 -0
- package/dist/helper-android.js +1 -1
- package/package.json +1 -1
package/dist/element.js
CHANGED
|
@@ -588,6 +588,7 @@ class Element {
|
|
|
588
588
|
await this._spec.click(this.context.target, this.target);
|
|
589
589
|
}
|
|
590
590
|
async type(value) {
|
|
591
|
+
this._logger.log(`Typing text "${value}" in element with selector`, this.selector);
|
|
591
592
|
await this._spec.type(this.context.target, this.target, value);
|
|
592
593
|
}
|
|
593
594
|
async preserveState() {
|
package/dist/helper-android.js
CHANGED
|
@@ -111,7 +111,7 @@ class HelperAndroid {
|
|
|
111
111
|
contentHeightString = result.split(';')[0];
|
|
112
112
|
}
|
|
113
113
|
else {
|
|
114
|
-
contentHeightString = await this._command(`
|
|
114
|
+
contentHeightString = await this._command(`offset;${elementId};0;0;0;0`);
|
|
115
115
|
}
|
|
116
116
|
const contentHeight = Number(contentHeightString);
|
|
117
117
|
if (Number.isNaN(contentHeight))
|