froth-webdriverio-framework 0.1.23 → 0.1.25
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/mobile/commonMethods/Utils.js +10 -11
- package/package.json +1 -1
|
@@ -1,14 +1,13 @@
|
|
|
1
|
-
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
const verifyText= null;
|
|
1
|
+
// This file contains the common methods that are used in the test scripts
|
|
2
|
+
let ScrollToEnd = null;
|
|
3
|
+
let ClickIfVisible=null;
|
|
4
|
+
let VerifyTextInFieldAttribute= null;
|
|
5
|
+
let ScrollToBeginning = null;
|
|
6
|
+
let ScrollToLeft = null;
|
|
7
|
+
let ScrollToRight = null;
|
|
8
|
+
let ScrollDownToView= null;
|
|
9
|
+
let ScrollRightToView= null;
|
|
10
|
+
let verifyText= null;
|
|
12
11
|
|
|
13
12
|
if(process.env.LOCATION == 'local'){
|
|
14
13
|
ScrollToEnd = require('./ScrollToEnd');
|