@zohodesk/testinglibrary 0.4.8-experimental → 2.9.2

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.
Files changed (163) hide show
  1. package/.gitlab-ci.yml +1 -23
  2. package/README.md +6 -27
  3. package/build/bdd-framework/cli/commands/env.js +42 -0
  4. package/build/bdd-framework/cli/commands/export.js +62 -0
  5. package/build/bdd-framework/cli/commands/test.js +64 -0
  6. package/build/bdd-framework/cli/index.js +11 -0
  7. package/build/bdd-framework/cli/options.js +19 -0
  8. package/build/bdd-framework/cli/worker.js +13 -0
  9. package/build/bdd-framework/config/configDir.js +35 -0
  10. package/build/bdd-framework/config/enrichReporterData.js +23 -0
  11. package/build/bdd-framework/config/env.js +50 -0
  12. package/build/bdd-framework/config/index.js +94 -0
  13. package/build/bdd-framework/config/lang.js +14 -0
  14. package/build/bdd-framework/cucumber/buildStepDefinition.js +43 -0
  15. package/build/bdd-framework/cucumber/createTestStep.js +43 -0
  16. package/build/bdd-framework/cucumber/formatter/EventDataCollector.js +126 -0
  17. package/build/bdd-framework/cucumber/formatter/GherkinDocumentParser.js +72 -0
  18. package/build/bdd-framework/cucumber/formatter/PickleParser.js +25 -0
  19. package/build/bdd-framework/cucumber/formatter/durationHelpers.js +13 -0
  20. package/build/bdd-framework/cucumber/formatter/getColorFns.js +57 -0
  21. package/build/bdd-framework/cucumber/formatter/index.js +16 -0
  22. package/build/bdd-framework/cucumber/formatter/locationHelpers.js +16 -0
  23. package/build/bdd-framework/cucumber/loadConfig.js +17 -0
  24. package/build/bdd-framework/cucumber/loadFeatures.js +70 -0
  25. package/build/bdd-framework/cucumber/loadSnippetBuilder.js +20 -0
  26. package/build/bdd-framework/cucumber/loadSteps.js +47 -0
  27. package/build/bdd-framework/cucumber/resolveFeaturePaths.js +62 -0
  28. package/build/bdd-framework/cucumber/stepArguments.js +21 -0
  29. package/build/bdd-framework/cucumber/types.js +5 -0
  30. package/build/bdd-framework/cucumber/valueChecker.js +23 -0
  31. package/build/bdd-framework/decorators.js +18 -0
  32. package/build/bdd-framework/gen/fixtures.js +48 -0
  33. package/build/bdd-framework/gen/formatter.js +167 -0
  34. package/build/bdd-framework/gen/i18n.js +39 -0
  35. package/build/bdd-framework/gen/index.js +197 -0
  36. package/build/bdd-framework/gen/specialTags.js +70 -0
  37. package/build/bdd-framework/gen/testFile.js +470 -0
  38. package/build/bdd-framework/gen/testMeta.js +60 -0
  39. package/build/bdd-framework/gen/testNode.js +35 -0
  40. package/build/bdd-framework/gen/testPoms.js +133 -0
  41. package/build/bdd-framework/hooks/scenario.js +130 -0
  42. package/build/bdd-framework/hooks/worker.js +89 -0
  43. package/build/bdd-framework/index.js +52 -0
  44. package/build/bdd-framework/playwright/fixtureParameterNames.js +93 -0
  45. package/build/bdd-framework/playwright/getLocationInFile.js +79 -0
  46. package/build/bdd-framework/playwright/loadConfig.js +42 -0
  47. package/build/bdd-framework/playwright/loadUtils.js +33 -0
  48. package/build/bdd-framework/playwright/testTypeImpl.js +79 -0
  49. package/build/bdd-framework/playwright/transform.js +88 -0
  50. package/build/bdd-framework/playwright/types.js +12 -0
  51. package/build/bdd-framework/playwright/utils.js +56 -0
  52. package/build/bdd-framework/reporter/cucumber/base.js +52 -0
  53. package/build/bdd-framework/reporter/cucumber/custom.js +73 -0
  54. package/build/bdd-framework/reporter/cucumber/helper.js +12 -0
  55. package/build/bdd-framework/reporter/cucumber/html.js +40 -0
  56. package/build/bdd-framework/reporter/cucumber/index.js +74 -0
  57. package/build/bdd-framework/reporter/cucumber/json.js +312 -0
  58. package/build/bdd-framework/reporter/cucumber/junit.js +205 -0
  59. package/build/bdd-framework/reporter/cucumber/message.js +20 -0
  60. package/build/bdd-framework/reporter/cucumber/messagesBuilder/AttachmentMapper.js +82 -0
  61. package/build/bdd-framework/reporter/cucumber/messagesBuilder/Builder.js +197 -0
  62. package/build/bdd-framework/reporter/cucumber/messagesBuilder/GherkinDocument.js +43 -0
  63. package/build/bdd-framework/reporter/cucumber/messagesBuilder/GherkinDocumentClone.js +52 -0
  64. package/build/bdd-framework/reporter/cucumber/messagesBuilder/GherkinDocuments.js +105 -0
  65. package/build/bdd-framework/reporter/cucumber/messagesBuilder/Hook.js +70 -0
  66. package/build/bdd-framework/reporter/cucumber/messagesBuilder/Meta.js +45 -0
  67. package/build/bdd-framework/reporter/cucumber/messagesBuilder/Pickles.js +27 -0
  68. package/build/bdd-framework/reporter/cucumber/messagesBuilder/Projects.js +38 -0
  69. package/build/bdd-framework/reporter/cucumber/messagesBuilder/TestCase.js +128 -0
  70. package/build/bdd-framework/reporter/cucumber/messagesBuilder/TestCaseRun.js +154 -0
  71. package/build/bdd-framework/reporter/cucumber/messagesBuilder/TestCaseRunHooks.js +123 -0
  72. package/build/bdd-framework/reporter/cucumber/messagesBuilder/TestStepAttachments.js +67 -0
  73. package/build/bdd-framework/reporter/cucumber/messagesBuilder/TestStepRun.js +114 -0
  74. package/build/bdd-framework/reporter/cucumber/messagesBuilder/index.js +30 -0
  75. package/build/bdd-framework/reporter/cucumber/messagesBuilder/pwStepUtils.js +70 -0
  76. package/build/bdd-framework/reporter/cucumber/messagesBuilder/timing.js +35 -0
  77. package/build/bdd-framework/reporter/cucumber/messagesBuilder/types.js +5 -0
  78. package/build/bdd-framework/run/StepInvoker.js +69 -0
  79. package/build/bdd-framework/run/bddData/index.js +59 -0
  80. package/build/bdd-framework/run/bddData/types.js +5 -0
  81. package/build/bdd-framework/run/bddFixtures.js +192 -0
  82. package/build/bdd-framework/run/bddWorld.js +79 -0
  83. package/build/bdd-framework/run/bddWorldInternal.js +11 -0
  84. package/build/bdd-framework/snippets/index.js +132 -0
  85. package/build/bdd-framework/snippets/snippetSyntax.js +43 -0
  86. package/build/bdd-framework/snippets/snippetSyntaxDecorators.js +26 -0
  87. package/build/bdd-framework/snippets/snippetSyntaxTs.js +18 -0
  88. package/build/bdd-framework/stepDefinitions/createBdd.js +66 -0
  89. package/build/bdd-framework/stepDefinitions/decorators/class.js +68 -0
  90. package/build/bdd-framework/stepDefinitions/decorators/steps.js +99 -0
  91. package/build/bdd-framework/stepDefinitions/defineStep.js +62 -0
  92. package/build/bdd-framework/stepDefinitions/stepConfig.js +24 -0
  93. package/build/bdd-framework/steps/createBdd.js +78 -0
  94. package/build/bdd-framework/steps/decorators/class.js +68 -0
  95. package/build/bdd-framework/steps/decorators/steps.js +98 -0
  96. package/build/bdd-framework/steps/defineStep.js +62 -0
  97. package/build/bdd-framework/steps/stepConfig.js +24 -0
  98. package/build/bdd-framework/utils/AutofillMap.js +20 -0
  99. package/build/bdd-framework/utils/exit.js +62 -0
  100. package/build/bdd-framework/utils/index.js +93 -0
  101. package/build/bdd-framework/utils/jsStringWrap.js +44 -0
  102. package/build/bdd-framework/utils/logger.js +30 -0
  103. package/build/bdd-framework/utils/stripAnsiEscapes.js +20 -0
  104. package/build/core/playwright/builtInFixtures/page.js +0 -7
  105. package/build/core/playwright/constants/fileMutexConfig.js +11 -0
  106. package/build/core/playwright/helpers/auth/checkAuthCookies.js +2 -8
  107. package/build/core/playwright/helpers/auth/loginSteps.js +25 -18
  108. package/build/core/playwright/helpers/checkAuthDirectory.js +17 -0
  109. package/build/core/playwright/helpers/fileMutex.js +58 -0
  110. package/build/core/playwright/index.js +23 -10
  111. package/build/core/playwright/setup/config-creator.js +3 -3
  112. package/build/core/playwright/setup/config-utils.js +25 -8
  113. package/build/core/playwright/test-runner.js +35 -9
  114. package/build/decorators.d.ts +1 -1
  115. package/build/decorators.js +1 -1
  116. package/build/setup-folder-structure/samples/auth-setup-sample.js +66 -14
  117. package/build/setup-folder-structure/samples/authUsers-sample.json +9 -0
  118. package/build/setup-folder-structure/samples/env-config-sample.json +21 -0
  119. package/build/setup-folder-structure/setupProject.js +5 -18
  120. package/build/test/core/playwright/helpers/__tests__/fileMutex.test.js +94 -0
  121. package/nobdd/uat/conf/nobdd/uat.config.js +11 -4
  122. package/nobdd/uat.config.js +8 -3
  123. package/npm-shrinkwrap.json +6475 -0
  124. package/package.json +8 -7
  125. package/build/core/playwright/fixtures.js +0 -24
  126. package/build/core/playwright/runner/Runner.js +0 -22
  127. package/build/core/playwright/runner/RunnerHelper.js +0 -43
  128. package/build/core/playwright/runner/RunnerTypes.js +0 -17
  129. package/build/core/playwright/runner/SpawnRunner.js +0 -110
  130. package/build/setup-folder-structure/samples/actors-index.js +0 -2
  131. package/build/setup-folder-structure/samples/editions-index.js +0 -3
  132. package/build/setup-folder-structure/samples/free-sample.json +0 -25
  133. package/build/setup-folder-structure/samples/settings.json +0 -7
  134. package/build/test/Test.js +0 -11
  135. package/build/test/core/playwright/runner/__tests__/RunnerHelper.test.js +0 -16
  136. package/build/test/core/playwright/runner/__tests__/SpawnRunner.test.js +0 -27
  137. package/nobdd/uat/playwright/.auth/anitha.m+clientat@zohotest.com-cookies.json +0 -276
  138. package/nobdd/uat/playwright/.auth/anitha.m+clientattest@zohotest.com-cookies.json +0 -3
  139. package/nobdd/uat/playwright/.auth/anitha.m+uat@zohotest.com-cookies.json +0 -3
  140. package/nobdd/uat/playwright/.auth/skumaresan@zohotest.com-cookies.json +0 -503
  141. package/nobdd/uat/playwright/.auth/solairaj.m+26jun2023@zohotest.com-cookies.json +0 -173
  142. package/nobdd/uat/playwright/.auth/sridhar.parthasarathy@zohotest.com-cookies.json +0 -520
  143. package/nobdd/uat/playwright-report/data/15676399fddfec429bc2935c407212f42cfa65b2.webm +0 -0
  144. package/nobdd/uat/playwright-report/data/7be7af3de16a483f32cdcb86b3a290f584e21f76.zip +0 -0
  145. package/nobdd/uat/playwright-report/index.html +0 -68
  146. package/nobdd/uat/playwright-report/test-summary.json +0 -17
  147. package/nobdd/uat/playwright-report/trace/assets/codeMirrorModule-BK3t1EEu.js +0 -24
  148. package/nobdd/uat/playwright-report/trace/assets/wsPort-964mA9MZ.js +0 -69
  149. package/nobdd/uat/playwright-report/trace/codeMirrorModule.Hs9-1ZG4.css +0 -1
  150. package/nobdd/uat/playwright-report/trace/codicon.zGuYmc9o.ttf +0 -0
  151. package/nobdd/uat/playwright-report/trace/index.-g_5lMbJ.css +0 -1
  152. package/nobdd/uat/playwright-report/trace/index.cbtHmFgM.js +0 -2
  153. package/nobdd/uat/playwright-report/trace/index.html +0 -26
  154. package/nobdd/uat/playwright-report/trace/playwright-logo.svg +0 -9
  155. package/nobdd/uat/playwright-report/trace/snapshot.html +0 -21
  156. package/nobdd/uat/playwright-report/trace/sw.bundle.js +0 -4
  157. package/nobdd/uat/playwright-report/trace/uiMode.fcU_T5Nf.js +0 -10
  158. package/nobdd/uat/playwright-report/trace/uiMode.html +0 -17
  159. package/nobdd/uat/playwright-report/trace/uiMode.pWy0Re7G.css +0 -1
  160. package/nobdd/uat/playwright-report/trace/wsPort.zR1WIy9-.css +0 -1
  161. package/nobdd/uat/playwright-report/trace/xtermModule.0lwXJFHT.css +0 -32
  162. package/nobdd/uat/test-results/modules-nobdd-steps-ExamplesForTestData.featur-a74c6-required-nobdd-Verify-the-page-is-not-logged-in-chromium/trace.zip +0 -0
  163. package/nobdd/uat/test-results/modules-nobdd-steps-ExamplesForTestData.featur-a74c6-required-nobdd-Verify-the-page-is-not-logged-in-chromium/video.webm +0 -0
@@ -1,503 +0,0 @@
1
- {
2
- "cookies": [
3
- {
4
- "name": "_zxor",
5
- "value": "\"https://desk.localzoho.com\"",
6
- "domain": "tipengine.localzoho.com",
7
- "path": "/analytics",
8
- "expires": -1,
9
- "httpOnly": false,
10
- "secure": true,
11
- "sameSite": "None"
12
- },
13
- {
14
- "name": "zmuac",
15
- "value": "MTMwODcyN18yNDYwNjAy",
16
- "domain": "mail.localzoho.com",
17
- "path": "/biz",
18
- "expires": 1731831617.372783,
19
- "httpOnly": true,
20
- "secure": true,
21
- "sameSite": "Strict"
22
- },
23
- {
24
- "name": "zalb_0572a5d605",
25
- "value": "ba3dc26d7ea17690075fd2003bba2ade",
26
- "domain": "desk.localzoho.com",
27
- "path": "/",
28
- "expires": -1,
29
- "httpOnly": true,
30
- "secure": true,
31
- "sameSite": "Lax"
32
- },
33
- {
34
- "name": "JSESSIONID",
35
- "value": "70CD8B2E03A395B7285A1D44D866A3AC",
36
- "domain": "desk.localzoho.com",
37
- "path": "/",
38
- "expires": -1,
39
- "httpOnly": true,
40
- "secure": true,
41
- "sameSite": "Lax"
42
- },
43
- {
44
- "name": "zalb_5fe0f89cf8",
45
- "value": "c079e21bfd58d9ac264c7007b4cf5efb",
46
- "domain": "accounts.localzoho.com",
47
- "path": "/",
48
- "expires": -1,
49
- "httpOnly": true,
50
- "secure": true,
51
- "sameSite": "Lax"
52
- },
53
- {
54
- "name": "iamcsr",
55
- "value": "c44b85bb-d0e3-4fd6-9d03-ec9729051ff6",
56
- "domain": "accounts.localzoho.com",
57
- "path": "/",
58
- "expires": -1,
59
- "httpOnly": false,
60
- "secure": true,
61
- "sameSite": "None"
62
- },
63
- {
64
- "name": "_zcsr_tmp",
65
- "value": "c44b85bb-d0e3-4fd6-9d03-ec9729051ff6",
66
- "domain": "accounts.localzoho.com",
67
- "path": "/",
68
- "expires": -1,
69
- "httpOnly": false,
70
- "secure": true,
71
- "sameSite": "Strict"
72
- },
73
- {
74
- "name": "stk",
75
- "value": "13fc37bfad5098a4ace6f793423e76e0",
76
- "domain": "accounts.localzoho.com",
77
- "path": "/",
78
- "expires": -1,
79
- "httpOnly": true,
80
- "secure": true,
81
- "sameSite": "Lax"
82
- },
83
- {
84
- "name": "iamcsr",
85
- "value": "a4095f75-be7a-4db7-a07f-6dbf524e79b5",
86
- "domain": "accounts.localzoho.eu",
87
- "path": "/",
88
- "expires": -1,
89
- "httpOnly": false,
90
- "secure": true,
91
- "sameSite": "None"
92
- },
93
- {
94
- "name": "_iamadt",
95
- "value": "8fca360bfe7ec7377cceb6125e0d6d36a522a8609c8754b82a8ae22ef7de933b9f8b5e2092b20636f462b01645ecea44",
96
- "domain": ".localzoho.com",
97
- "path": "/",
98
- "expires": 1732263613.150634,
99
- "httpOnly": true,
100
- "secure": true,
101
- "sameSite": "None"
102
- },
103
- {
104
- "name": "_iambdt",
105
- "value": "72526c108b9972575081b87c19b6acad349f8fbc01f434e5a1e49d86a1802ecca86741191a1689d7de73439f65e884814b766fa83aa1c4e56f329da913f9831b",
106
- "domain": ".localzoho.com",
107
- "path": "/",
108
- "expires": 1732263613.150658,
109
- "httpOnly": true,
110
- "secure": true,
111
- "sameSite": "None"
112
- },
113
- {
114
- "name": "_z_identity",
115
- "value": "true",
116
- "domain": "accounts.localzoho.com",
117
- "path": "/",
118
- "expires": 1729246813.150669,
119
- "httpOnly": false,
120
- "secure": true,
121
- "sameSite": "None"
122
- },
123
- {
124
- "name": "crmcsr",
125
- "value": "dfcb9e2f6d472dba67e530ccb549dce71b1ebc2be9474ef474f4d4c2fa490877a78a5850844ed8aba08e53e1f47ebdc31d9aaf55a422ea0d9ecebb69f2789880",
126
- "domain": "desk.localzoho.com",
127
- "path": "/",
128
- "expires": -1,
129
- "httpOnly": false,
130
- "secure": true,
131
- "sameSite": "None"
132
- },
133
- {
134
- "name": "_zcsr_tmp",
135
- "value": "dfcb9e2f6d472dba67e530ccb549dce71b1ebc2be9474ef474f4d4c2fa490877a78a5850844ed8aba08e53e1f47ebdc31d9aaf55a422ea0d9ecebb69f2789880",
136
- "domain": "desk.localzoho.com",
137
- "path": "/",
138
- "expires": -1,
139
- "httpOnly": false,
140
- "secure": true,
141
- "sameSite": "Strict"
142
- },
143
- {
144
- "name": "JSESSIONID",
145
- "value": "A3D166504BB66968FFEB84DC889A89BF",
146
- "domain": "webfonts.localzoho.com",
147
- "path": "/",
148
- "expires": -1,
149
- "httpOnly": true,
150
- "secure": false,
151
- "sameSite": "Lax"
152
- },
153
- {
154
- "name": "zalb_0572a5d605",
155
- "value": "2c4303c5f018f1d2b10dafbb909828ce",
156
- "domain": "deskstatic.localzoho.com",
157
- "path": "/",
158
- "expires": -1,
159
- "httpOnly": true,
160
- "secure": true,
161
- "sameSite": "Lax"
162
- },
163
- {
164
- "name": "crmcsr",
165
- "value": "7d6d27e6d14add8b76a2cf4c3896016c27130aac1a12f4fc897d694ec2f31b88d17c8c87cb58e8c5027bf339217768829490cb836c3004b2d4d48f8a891c79bc",
166
- "domain": "deskstatic.localzoho.com",
167
- "path": "/",
168
- "expires": -1,
169
- "httpOnly": false,
170
- "secure": true,
171
- "sameSite": "None"
172
- },
173
- {
174
- "name": "_zcsr_tmp",
175
- "value": "7d6d27e6d14add8b76a2cf4c3896016c27130aac1a12f4fc897d694ec2f31b88d17c8c87cb58e8c5027bf339217768829490cb836c3004b2d4d48f8a891c79bc",
176
- "domain": "deskstatic.localzoho.com",
177
- "path": "/",
178
- "expires": -1,
179
- "httpOnly": false,
180
- "secure": true,
181
- "sameSite": "Strict"
182
- },
183
- {
184
- "name": "zalb_c95672b708",
185
- "value": "c1a754d3dbcacea75586edfc838ed630",
186
- "domain": "mail.localzoho.com",
187
- "path": "/",
188
- "expires": -1,
189
- "httpOnly": true,
190
- "secure": true,
191
- "sameSite": "Lax"
192
- },
193
- {
194
- "name": "zmcsr",
195
- "value": "8aa0a8cb8aabd3a00d89918032d2bf28fede9f17f7ff70516e59e1d061fa7f917a4ad3d18805220606ec86965660bafcb6b086bdb3f824213376cde3a4f157dc",
196
- "domain": "mail.localzoho.com",
197
- "path": "/",
198
- "expires": -1,
199
- "httpOnly": false,
200
- "secure": true,
201
- "sameSite": "None"
202
- },
203
- {
204
- "name": "_zcsr_tmp",
205
- "value": "8aa0a8cb8aabd3a00d89918032d2bf28fede9f17f7ff70516e59e1d061fa7f917a4ad3d18805220606ec86965660bafcb6b086bdb3f824213376cde3a4f157dc",
206
- "domain": "mail.localzoho.com",
207
- "path": "/",
208
- "expires": -1,
209
- "httpOnly": false,
210
- "secure": true,
211
- "sameSite": "Strict"
212
- },
213
- {
214
- "name": "JSESSIONID",
215
- "value": "ADB4F9AB8FBBF485EC44C71977E7F49F",
216
- "domain": "mail.localzoho.com",
217
- "path": "/",
218
- "expires": -1,
219
- "httpOnly": true,
220
- "secure": true,
221
- "sameSite": "Lax"
222
- },
223
- {
224
- "name": "zmirc",
225
- "value": "-1",
226
- "domain": "mail.localzoho.com",
227
- "path": "/",
228
- "expires": 1729326017.372794,
229
- "httpOnly": true,
230
- "secure": true,
231
- "sameSite": "Strict"
232
- },
233
- {
234
- "name": "ZSZS_DNFY",
235
- "value": "",
236
- "domain": "desk.localzoho.com",
237
- "path": "/",
238
- "expires": 1729239632,
239
- "httpOnly": false,
240
- "secure": false,
241
- "sameSite": "Lax"
242
- },
243
- {
244
- "name": "zalb_c8481e98e2",
245
- "value": "a6fe2b8aaf5f7d25dffa52b205766a42",
246
- "domain": "desk.localzoho.com",
247
- "path": "/",
248
- "expires": -1,
249
- "httpOnly": true,
250
- "secure": true,
251
- "sameSite": "Lax"
252
- },
253
- {
254
- "name": "CT_CSRF_TOKEN",
255
- "value": "dfcb9e2f6d472dba67e530ccb549dce71b1ebc2be9474ef474f4d4c2fa490877a78a5850844ed8aba08e53e1f47ebdc31d9aaf55a422ea0d9ecebb69f2789880",
256
- "domain": "desk.localzoho.com",
257
- "path": "/",
258
- "expires": -1,
259
- "httpOnly": false,
260
- "secure": true,
261
- "sameSite": "None"
262
- },
263
- {
264
- "name": "wms-tkp-token",
265
- "value": "1308727-e56c99cd-5777036c291ae5da9f3523863305328d",
266
- "domain": ".localzoho.com",
267
- "path": "/",
268
- "expires": -1,
269
- "httpOnly": true,
270
- "secure": true,
271
- "sameSite": "None"
272
- },
273
- {
274
- "name": "com_chat_owner",
275
- "value": "1729239622937",
276
- "domain": ".localzoho.com",
277
- "path": "/",
278
- "expires": 1729239632,
279
- "httpOnly": false,
280
- "secure": true,
281
- "sameSite": "Strict"
282
- },
283
- {
284
- "name": "com_avcliq_owner",
285
- "value": "1729239622938",
286
- "domain": ".localzoho.com",
287
- "path": "/",
288
- "expires": 1729239632,
289
- "httpOnly": false,
290
- "secure": true,
291
- "sameSite": "Strict"
292
- },
293
- {
294
- "name": "zalb_c253519ea7",
295
- "value": "f841d5c5375509d867743482b02bd1bb",
296
- "domain": "desk.localzoho.com",
297
- "path": "/",
298
- "expires": -1,
299
- "httpOnly": true,
300
- "secure": true,
301
- "sameSite": "Lax"
302
- },
303
- {
304
- "name": "CSRF_TOKEN",
305
- "value": "dfcb9e2f6d472dba67e530ccb549dce71b1ebc2be9474ef474f4d4c2fa490877a78a5850844ed8aba08e53e1f47ebdc31d9aaf55a422ea0d9ecebb69f2789880",
306
- "domain": "desk.localzoho.com",
307
- "path": "/",
308
- "expires": -1,
309
- "httpOnly": false,
310
- "secure": true,
311
- "sameSite": "None"
312
- },
313
- {
314
- "name": "phonebridgecsr",
315
- "value": "109c5df3dd0fbc64d3104ca599cf1d3eeaf61b6021629e91d51c81115930487357aae6c444c99da01657cd596bd25e132e8acdf1ca80876c8286a761e2f1a9ee",
316
- "domain": "phonebridge.localzoho.com",
317
- "path": "/",
318
- "expires": -1,
319
- "httpOnly": false,
320
- "secure": true,
321
- "sameSite": "None"
322
- },
323
- {
324
- "name": "_zcsr_tmp",
325
- "value": "109c5df3dd0fbc64d3104ca599cf1d3eeaf61b6021629e91d51c81115930487357aae6c444c99da01657cd596bd25e132e8acdf1ca80876c8286a761e2f1a9ee",
326
- "domain": "phonebridge.localzoho.com",
327
- "path": "/",
328
- "expires": -1,
329
- "httpOnly": false,
330
- "secure": true,
331
- "sameSite": "Strict"
332
- },
333
- {
334
- "name": "concsr",
335
- "value": "50cce435214378c0762da30f0ddf1e9db8cc881fc532a1600b924c735507d1f4db4780cfc03ce845606210d702fbc108581ad38b052a06ed6350db17dcf313b1",
336
- "domain": "contacts.localzoho.com",
337
- "path": "/",
338
- "expires": -1,
339
- "httpOnly": false,
340
- "secure": true,
341
- "sameSite": "None"
342
- },
343
- {
344
- "name": "_zcsr_tmp",
345
- "value": "50cce435214378c0762da30f0ddf1e9db8cc881fc532a1600b924c735507d1f4db4780cfc03ce845606210d702fbc108581ad38b052a06ed6350db17dcf313b1",
346
- "domain": "contacts.localzoho.com",
347
- "path": "/",
348
- "expires": -1,
349
- "httpOnly": false,
350
- "secure": true,
351
- "sameSite": "Strict"
352
- },
353
- {
354
- "name": "JSESSIONID",
355
- "value": "8D158E68E6BCC4E07E6E1A7EBA6FB1E1",
356
- "domain": "contacts.localzoho.com",
357
- "path": "/",
358
- "expires": -1,
359
- "httpOnly": true,
360
- "secure": true,
361
- "sameSite": "Lax"
362
- },
363
- {
364
- "name": "iamcsr",
365
- "value": "693d0c6228ccb8309bda3c0e7c6c1edbb19f86935e286c73dbe777a73e006f0407ca5c9d512fce2cfe376e3e5d038841b31a0ace5e672ea1c178e92b2f00995f",
366
- "domain": "tipengine.localzoho.com",
367
- "path": "/",
368
- "expires": -1,
369
- "httpOnly": false,
370
- "secure": true,
371
- "sameSite": "None"
372
- },
373
- {
374
- "name": "_zcsr_tmp",
375
- "value": "693d0c6228ccb8309bda3c0e7c6c1edbb19f86935e286c73dbe777a73e006f0407ca5c9d512fce2cfe376e3e5d038841b31a0ace5e672ea1c178e92b2f00995f",
376
- "domain": "tipengine.localzoho.com",
377
- "path": "/",
378
- "expires": -1,
379
- "httpOnly": false,
380
- "secure": true,
381
- "sameSite": "Strict"
382
- },
383
- {
384
- "name": "JSESSIONID",
385
- "value": "5386EA4B52F24B5026577CE5FAF6A6EC",
386
- "domain": "tipengine.localzoho.com",
387
- "path": "/",
388
- "expires": -1,
389
- "httpOnly": true,
390
- "secure": false,
391
- "sameSite": "Lax"
392
- },
393
- {
394
- "name": "_zxor",
395
- "value": "\"https://desk.localzoho.com\"",
396
- "domain": "tipengine.localzoho.com",
397
- "path": "/",
398
- "expires": -1,
399
- "httpOnly": false,
400
- "secure": true,
401
- "sameSite": "None"
402
- }
403
- ],
404
- "origins": [
405
- {
406
- "origin": "https://desk.localzoho.com",
407
- "localStorage": [
408
- {
409
- "name": "1308727_frequent_smileys",
410
- "value": "{\"work\":[\":smile:\",\":happy:\",\":joy:\",\":love:\",\":thinking:\",\":surprise:\",\":thumbsup:\",\":thumbsdown:\",\":namaste:\",\":tensed:\",\":biceps:\",\":doubt:\",\":super:\",\":clap:\",\":fireworks:\",\":food:\",\":gift-box:\"],\"emoji\":[\":grinning:\",\":blush:\",\":wink:\",\":stuck-out-tongue-winking-eye:\",\":flushed:\",\":sob:\",\":sweat-smile:\",\":scream:\",\":sunglasses:\",\":raised-hands:\",\":wave:\",\":house-with-garden:\",\":point-up-2:\",\":dancer:\",\":bouquet:\",\":round-pushpin:\",\":heavy-plus-sign:\"],\"animated\":[\":smile!:\",\":happy!:\",\":joy!:\",\":love!:\",\":thinking!:\",\":surprise!:\",\":thumbsup!:\",\":thumbsdown!:\",\":namaste!:\",\":tensed!:\",\":biceps!:\",\":doubt!:\",\":super!:\",\":clap!:\",\":fireworks!:\",\":food!:\",\":gift-box!:\"],\"customemoji\":[],\"sticker\":[]}"
411
- },
412
- {
413
- "name": "@zohodesk",
414
- "value": "{\"recommendationsExpiry\":1729241415346,\"recommendedOrg\":\"1381224\"}"
415
- },
416
- {
417
- "name": "wms_firstloaded",
418
- "value": "1729239624220"
419
- },
420
- {
421
- "name": "micsTabSwitchTime",
422
- "value": "1729239623290"
423
- },
424
- {
425
- "name": "isDnBannerHide",
426
- "value": "true"
427
- },
428
- {
429
- "name": "wms_draft_lmtime",
430
- "value": "-1"
431
- },
432
- {
433
- "name": "currentTabId",
434
- "value": "86362497-bbea-4a0b-97c2-aec856adfd59"
435
- },
436
- {
437
- "name": "zdPalette",
438
- "value": "blue"
439
- },
440
- {
441
- "name": "zdTheme",
442
- "value": "light"
443
- },
444
- {
445
- "name": "zdDarkMode",
446
- "value": "pureDark"
447
- },
448
- {
449
- "name": "onlyOne",
450
- "value": "true"
451
- },
452
- {
453
- "name": "micsnotificationtime14",
454
- "value": "1729239623290"
455
- },
456
- {
457
- "name": "noOfTabs",
458
- "value": "1"
459
- },
460
- {
461
- "name": "zdLhsPalette",
462
- "value": "light"
463
- }
464
- ]
465
- },
466
- {
467
- "origin": "https://accounts.localzoho.com",
468
- "localStorage": [
469
- {
470
- "name": "isDnBannerHide",
471
- "value": "true"
472
- }
473
- ]
474
- },
475
- {
476
- "origin": "https://wms.localzoho.com",
477
- "localStorage": [
478
- {
479
- "name": "isDnBannerHide",
480
- "value": "true"
481
- }
482
- ]
483
- },
484
- {
485
- "origin": "https://tipengine.localzoho.com",
486
- "localStorage": [
487
- {
488
- "name": "isDnBannerHide",
489
- "value": "true"
490
- }
491
- ]
492
- },
493
- {
494
- "origin": "https://pubsub.localzoho.com",
495
- "localStorage": [
496
- {
497
- "name": "isDnBannerHide",
498
- "value": "true"
499
- }
500
- ]
501
- }
502
- ]
503
- }
@@ -1,173 +0,0 @@
1
- {
2
- "cookies": [
3
- {
4
- "name": "JSESSIONID",
5
- "value": "F368CE75F3EC0D5C67CB5F1A0E5D17D8",
6
- "domain": "zdesk-devops08.csez.zohocorpin.com",
7
- "path": "/",
8
- "expires": -1,
9
- "httpOnly": true,
10
- "secure": true,
11
- "sameSite": "Lax"
12
- },
13
- {
14
- "name": "zalb_f20a9a3b21",
15
- "value": "04e9394fbc39ac017304bc335bf535e0",
16
- "domain": "accounts.csez.zohocorpin.com",
17
- "path": "/",
18
- "expires": -1,
19
- "httpOnly": true,
20
- "secure": true,
21
- "sameSite": "Lax"
22
- },
23
- {
24
- "name": "stk",
25
- "value": "c212a756421e94fcb7a21132d824626b",
26
- "domain": "accounts.csez.zohocorpin.com",
27
- "path": "/",
28
- "expires": -1,
29
- "httpOnly": true,
30
- "secure": true,
31
- "sameSite": "Lax"
32
- },
33
- {
34
- "name": "_cseziamadt",
35
- "value": "5f250fcbf3ce33b7994dc88aa91627b969ba490d46a2b4a86cc6a1c01e2300a5948eb7b5aa21d02e85d8a92a96636f080326a70b3d083628fabe7bb9fcafb7ba",
36
- "domain": ".zohocorpin.com",
37
- "path": "/",
38
- "expires": 1732694433.310132,
39
- "httpOnly": true,
40
- "secure": true,
41
- "sameSite": "None"
42
- },
43
- {
44
- "name": "_cseziambdt",
45
- "value": "83078b68ed5a545c8472b4a2afbbbf1de740b362fa4fac421ba99c86ade0c426c84b433071ae4c0ba9c7e9d4fb39a04556700dc8a39b33d7a666d1666767e5e3",
46
- "domain": ".zohocorpin.com",
47
- "path": "/",
48
- "expires": 1732694433.310188,
49
- "httpOnly": true,
50
- "secure": true,
51
- "sameSite": "None"
52
- },
53
- {
54
- "name": "_z_identity",
55
- "value": "true",
56
- "domain": "accounts.csez.zohocorpin.com",
57
- "path": "/",
58
- "expires": 1729677633.310209,
59
- "httpOnly": false,
60
- "secure": true,
61
- "sameSite": "None"
62
- },
63
- {
64
- "name": "iamcsr",
65
- "value": "3f51f5f70b95d78a7f889da660c773920acba6db29ea09d2adde6745c2ec2fbf3d1b19de36fc731a294afdf4d79c885f53ba3d8434933e704c196ad9897128bb",
66
- "domain": "accounts.csez.zohocorpin.com",
67
- "path": "/",
68
- "expires": -1,
69
- "httpOnly": false,
70
- "secure": true,
71
- "sameSite": "None"
72
- },
73
- {
74
- "name": "_zcsr_tmp",
75
- "value": "3f51f5f70b95d78a7f889da660c773920acba6db29ea09d2adde6745c2ec2fbf3d1b19de36fc731a294afdf4d79c885f53ba3d8434933e704c196ad9897128bb",
76
- "domain": "accounts.csez.zohocorpin.com",
77
- "path": "/",
78
- "expires": -1,
79
- "httpOnly": false,
80
- "secure": true,
81
- "sameSite": "Strict"
82
- },
83
- {
84
- "name": "concsr",
85
- "value": "bf5a29df35e378267dabef9c9cb0942c28b565c70900886f60fad48bef134c83514da8d00c4d3a70adc587ac9ef0976a2cfbc27d62d602605834832f7b6c3fd2",
86
- "domain": "contacts.csez.zohocorpin.com",
87
- "path": "/",
88
- "expires": -1,
89
- "httpOnly": false,
90
- "secure": true,
91
- "sameSite": "None"
92
- },
93
- {
94
- "name": "_zcsr_tmp",
95
- "value": "bf5a29df35e378267dabef9c9cb0942c28b565c70900886f60fad48bef134c83514da8d00c4d3a70adc587ac9ef0976a2cfbc27d62d602605834832f7b6c3fd2",
96
- "domain": "contacts.csez.zohocorpin.com",
97
- "path": "/",
98
- "expires": -1,
99
- "httpOnly": false,
100
- "secure": true,
101
- "sameSite": "Strict"
102
- },
103
- {
104
- "name": "crmcsr",
105
- "value": "e098e072e24dfd2b653d4c09769bf898bf276deda084f761ce02abe6b4643b83c2f2e073522056dc50b4edaa64d50130af15a157e7c35fb5a764782f7898c3d0",
106
- "domain": "zdesk-devops08.csez.zohocorpin.com",
107
- "path": "/",
108
- "expires": -1,
109
- "httpOnly": false,
110
- "secure": true,
111
- "sameSite": "None"
112
- },
113
- {
114
- "name": "_zcsr_tmp",
115
- "value": "e098e072e24dfd2b653d4c09769bf898bf276deda084f761ce02abe6b4643b83c2f2e073522056dc50b4edaa64d50130af15a157e7c35fb5a764782f7898c3d0",
116
- "domain": "zdesk-devops08.csez.zohocorpin.com",
117
- "path": "/",
118
- "expires": -1,
119
- "httpOnly": false,
120
- "secure": true,
121
- "sameSite": "Strict"
122
- },
123
- {
124
- "name": "JSESSIONID",
125
- "value": "14F9FB0170DAB071BBC9C06630BBFCA2",
126
- "domain": "zdesk-devops10.csez.zohocorpin.com",
127
- "path": "/",
128
- "expires": -1,
129
- "httpOnly": true,
130
- "secure": true,
131
- "sameSite": "Lax"
132
- },
133
- {
134
- "name": "zalb_b75123ee82",
135
- "value": "47ed12f99672e77098db647edca82934",
136
- "domain": "static-qa07.zohodesk.csez.zohocorpin.com",
137
- "path": "/",
138
- "expires": -1,
139
- "httpOnly": false,
140
- "secure": false,
141
- "sameSite": "Lax"
142
- }
143
- ],
144
- "origins": [
145
- {
146
- "origin": "https://zdesk-devops08.csez.zohocorpin.com:31007",
147
- "localStorage": [
148
- {
149
- "name": "isDnBannerHide",
150
- "value": "true"
151
- }
152
- ]
153
- },
154
- {
155
- "origin": "https://accounts.csez.zohocorpin.com",
156
- "localStorage": [
157
- {
158
- "name": "isDnBannerHide",
159
- "value": "true"
160
- }
161
- ]
162
- },
163
- {
164
- "origin": "https://zdesk-devops10.csez.zohocorpin.com:31007",
165
- "localStorage": [
166
- {
167
- "name": "isDnBannerHide",
168
- "value": "true"
169
- }
170
- ]
171
- }
172
- ]
173
- }