froth-webdriverio-framework 7.0.25 → 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.
|
@@ -47,18 +47,18 @@ async function getExecuitonDetails(frothUrl, token, id) {
|
|
|
47
47
|
headers: DEFAULT_HEADERS(token)
|
|
48
48
|
});
|
|
49
49
|
|
|
50
|
-
const data = await handleResponse(response, 'getExecuitonDetails');
|
|
51
|
-
if (!data) return null;
|
|
50
|
+
// const data = await handleResponse(response, 'getExecuitonDetails');
|
|
51
|
+
// if (!data) return null;
|
|
52
52
|
|
|
53
|
-
|
|
54
|
-
//
|
|
53
|
+
let data = await handleResponse(response, 'getExecuitonDetails');
|
|
54
|
+
// let responseData = await response.json()
|
|
55
55
|
|
|
56
|
-
|
|
57
|
-
//
|
|
56
|
+
data = await aes.decrpytData(data.data)
|
|
57
|
+
// console.log("after decrypting",data)
|
|
58
58
|
|
|
59
|
-
|
|
60
|
-
//
|
|
61
|
-
|
|
59
|
+
data = JSON.parse(data)
|
|
60
|
+
// console.log("json parsing",data)
|
|
61
|
+
if (!data) return null;
|
|
62
62
|
|
|
63
63
|
const jsondata = {
|
|
64
64
|
automation_suite_id: data?.automation_suite_details?.id ?? null,
|