froth-webdriverio-framework 7.0.24 → 7.0.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.
@@ -1,4 +1,4 @@
1
- const aes=require('./aesEncryptionDecryption')
1
+ const aes = require('./aesEncryptionDecryption')
2
2
  /* =========================================================
3
3
  Execution / Script API Helpers (Normalized)
4
4
  ========================================================= */
@@ -46,16 +46,18 @@ async function getExecuitonDetails(frothUrl, token, id) {
46
46
  method: 'GET',
47
47
  headers: DEFAULT_HEADERS(token)
48
48
  });
49
-
49
+
50
+ // const data = await handleResponse(response, 'getExecuitonDetails');
51
+ // if (!data) return null;
50
52
 
51
53
  let data = await handleResponse(response, 'getExecuitonDetails');
52
- // let responseData = await response.json()
54
+ // let responseData = await response.json()
53
55
 
54
- // data = await aes.decrpytData(data.data)
55
- // console.log("after decrypting",data)
56
+ data = await aes.decrpytData(data.data)
57
+ // console.log("after decrypting",data)
56
58
 
57
59
  data = JSON.parse(data)
58
- // console.log("json parsing",data)
60
+ // console.log("json parsing",data)
59
61
  if (!data) return null;
60
62
 
61
63
  const jsondata = {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "froth-webdriverio-framework",
3
- "version": "7.0.24",
3
+ "version": "7.0.26",
4
4
  "readme": "WebdriverIO Integration",
5
5
  "description": "WebdriverIO and BrowserStack App Automate",
6
6
  "license": "MIT",