oxygen-cli 1.37.8 → 1.37.9

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 (303) hide show
  1. package/CHANGELOG.md +1687 -1687
  2. package/LICENSE +672 -672
  3. package/README.md +37 -37
  4. package/build/core/OxygenCore.js +8 -2
  5. package/build/core/OxygenEvents.js +4 -2
  6. package/build/core/OxygenModule.js +1 -1
  7. package/build/core/OxygenService.js +1 -1
  8. package/build/core/OxygenSubModule.js +1 -1
  9. package/build/core/WebDriverModule.js +1 -1
  10. package/build/core/utils.js +1 -1
  11. package/build/errors/HookError.js +1 -1
  12. package/build/errors/ModuleError.js +1 -1
  13. package/build/errors/ModuleUnavailableError.js +1 -1
  14. package/build/errors/OxygenError.js +1 -1
  15. package/build/errors/ScriptNotFound.js +1 -1
  16. package/build/errors/helper.js +1 -1
  17. package/build/index.js +1 -1
  18. package/build/lib/cli-util.js +25 -6
  19. package/build/lib/cli.js +2 -2
  20. package/build/lib/debugger.js +1 -1
  21. package/build/lib/img-merge.js +1 -1
  22. package/build/lib/launcher.js +1 -1
  23. package/build/lib/logger.js +43 -43
  24. package/build/lib/moduleRequire.js +1 -1
  25. package/build/lib/parallel-launcher.js +1 -1
  26. package/build/lib/param-manager.js +1 -1
  27. package/build/lib/param-reader-csv.js +1 -1
  28. package/build/lib/param-reader-excel.js +1 -1
  29. package/build/lib/param-reader-json.js +1 -1
  30. package/build/lib/text-to-image.js +1 -1
  31. package/build/lib/util.js +2 -2
  32. package/build/model/case-result.js +1 -1
  33. package/build/model/failure.js +1 -1
  34. package/build/model/status.js +1 -1
  35. package/build/model/step-result.js +1 -1
  36. package/build/model/suite-result.js +2 -1
  37. package/build/model/test-result.js +1 -1
  38. package/build/model/testcase.js +1 -1
  39. package/build/model/testsuite.js +1 -1
  40. package/build/ox_modules/index.js +1 -1
  41. package/build/ox_modules/module-assert.js +37 -37
  42. package/build/ox_modules/module-date.js +24 -24
  43. package/build/ox_modules/module-db.js +52 -52
  44. package/build/ox_modules/module-email.js +59 -59
  45. package/build/ox_modules/module-eyes.js +34 -34
  46. package/build/ox_modules/module-http/ntlm-util.js +10 -10
  47. package/build/ox_modules/module-http/ntlm.js +15 -15
  48. package/build/ox_modules/module-http.js +132 -132
  49. package/build/ox_modules/module-log.js +27 -27
  50. package/build/ox_modules/module-mailinator.js +87 -87
  51. package/build/ox_modules/module-mob/commands/alertAccept.js +17 -17
  52. package/build/ox_modules/module-mob/commands/alertDismiss.js +17 -17
  53. package/build/ox_modules/module-mob/commands/assertAlert.js +20 -20
  54. package/build/ox_modules/module-mob/commands/assertText.js +21 -21
  55. package/build/ox_modules/module-mob/commands/assertTitle.js +19 -19
  56. package/build/ox_modules/module-mob/commands/assertValue.js +18 -18
  57. package/build/ox_modules/module-mob/commands/back.js +16 -16
  58. package/build/ox_modules/module-mob/commands/clear.js +19 -19
  59. package/build/ox_modules/module-mob/commands/click.js +17 -17
  60. package/build/ox_modules/module-mob/commands/clickHidden.js +17 -17
  61. package/build/ox_modules/module-mob/commands/clickLong.js +18 -18
  62. package/build/ox_modules/module-mob/commands/clickMultipleTimes.js +18 -18
  63. package/build/ox_modules/module-mob/commands/closeApp.js +16 -16
  64. package/build/ox_modules/module-mob/commands/debug.js +16 -16
  65. package/build/ox_modules/module-mob/commands/dragAndDrop.js +19 -19
  66. package/build/ox_modules/module-mob/commands/enableNetwork.js +27 -27
  67. package/build/ox_modules/module-mob/commands/execute.js +21 -21
  68. package/build/ox_modules/module-mob/commands/findElement.js +20 -20
  69. package/build/ox_modules/module-mob/commands/findElements.js +23 -23
  70. package/build/ox_modules/module-mob/commands/getAlertText.js +17 -17
  71. package/build/ox_modules/module-mob/commands/getAppiumLogs.js +16 -16
  72. package/build/ox_modules/module-mob/commands/getBrowserLogs.js +16 -16
  73. package/build/ox_modules/module-mob/commands/getCurrentActivity.js +15 -15
  74. package/build/ox_modules/module-mob/commands/getCurrentPackage.js +15 -15
  75. package/build/ox_modules/module-mob/commands/getDeviceLogs.js +16 -16
  76. package/build/ox_modules/module-mob/commands/getDeviceTime.js +16 -16
  77. package/build/ox_modules/module-mob/commands/getLocation.js +20 -20
  78. package/build/ox_modules/module-mob/commands/getSource.js +16 -16
  79. package/build/ox_modules/module-mob/commands/getText.js +18 -18
  80. package/build/ox_modules/module-mob/commands/getTitle.js +13 -13
  81. package/build/ox_modules/module-mob/commands/getUrl.js +17 -17
  82. package/build/ox_modules/module-mob/commands/getValue.js +18 -18
  83. package/build/ox_modules/module-mob/commands/getWindowHandles.js +17 -17
  84. package/build/ox_modules/module-mob/commands/hideKeyboard.js +21 -21
  85. package/build/ox_modules/module-mob/commands/index.js +1 -1
  86. package/build/ox_modules/module-mob/commands/installApp.js +16 -16
  87. package/build/ox_modules/module-mob/commands/isAppInstalled.js +16 -16
  88. package/build/ox_modules/module-mob/commands/isCheckable.js +18 -18
  89. package/build/ox_modules/module-mob/commands/isChecked.js +18 -18
  90. package/build/ox_modules/module-mob/commands/isClickable.js +18 -18
  91. package/build/ox_modules/module-mob/commands/isExist.js +19 -19
  92. package/build/ox_modules/module-mob/commands/isSelected.js +23 -23
  93. package/build/ox_modules/module-mob/commands/isVisible.js +19 -19
  94. package/build/ox_modules/module-mob/commands/isWebViewContext.js +16 -16
  95. package/build/ox_modules/module-mob/commands/launchApp.js +15 -15
  96. package/build/ox_modules/module-mob/commands/longPressKeyCode.js +18 -18
  97. package/build/ox_modules/module-mob/commands/open.js +17 -17
  98. package/build/ox_modules/module-mob/commands/pause.js +16 -16
  99. package/build/ox_modules/module-mob/commands/removeApp.js +16 -16
  100. package/build/ox_modules/module-mob/commands/resetApp.js +15 -15
  101. package/build/ox_modules/module-mob/commands/scrollIntoElement.js +22 -22
  102. package/build/ox_modules/module-mob/commands/scrollIntoView.js +27 -27
  103. package/build/ox_modules/module-mob/commands/select.js +24 -24
  104. package/build/ox_modules/module-mob/commands/selectFrame.js +23 -23
  105. package/build/ox_modules/module-mob/commands/selectWindow.js +28 -28
  106. package/build/ox_modules/module-mob/commands/sendKeys.js +29 -29
  107. package/build/ox_modules/module-mob/commands/setContext.js +16 -16
  108. package/build/ox_modules/module-mob/commands/setNativeContext.js +15 -15
  109. package/build/ox_modules/module-mob/commands/setTimeout.js +21 -21
  110. package/build/ox_modules/module-mob/commands/setWebViewContext.js +16 -16
  111. package/build/ox_modules/module-mob/commands/shake.js +16 -16
  112. package/build/ox_modules/module-mob/commands/smsClickLink.js +19 -19
  113. package/build/ox_modules/module-mob/commands/smsGetText.js +20 -20
  114. package/build/ox_modules/module-mob/commands/swipe.js +20 -20
  115. package/build/ox_modules/module-mob/commands/swipeElement.js +20 -20
  116. package/build/ox_modules/module-mob/commands/swipeScreen.js +20 -20
  117. package/build/ox_modules/module-mob/commands/takeScreenshot.js +17 -17
  118. package/build/ox_modules/module-mob/commands/tap.js +17 -17
  119. package/build/ox_modules/module-mob/commands/type.js +20 -20
  120. package/build/ox_modules/module-mob/commands/unlockPattern.js +22 -22
  121. package/build/ox_modules/module-mob/commands/waitForExist.js +18 -18
  122. package/build/ox_modules/module-mob/commands/waitForInteractable.js +17 -17
  123. package/build/ox_modules/module-mob/commands/waitForVisible.js +17 -17
  124. package/build/ox_modules/module-mob.js +74 -74
  125. package/build/ox_modules/module-pdf.js +35 -35
  126. package/build/ox_modules/module-proxy.js +77 -77
  127. package/build/ox_modules/module-serial.js +55 -55
  128. package/build/ox_modules/module-shell.js +25 -25
  129. package/build/ox_modules/module-soap.js +72 -72
  130. package/build/ox_modules/module-twilio.js +41 -41
  131. package/build/ox_modules/module-utils.js +91 -91
  132. package/build/ox_modules/module-web/commands/alertAccept.js +17 -17
  133. package/build/ox_modules/module-web/commands/alertDismiss.js +17 -17
  134. package/build/ox_modules/module-web/commands/assertAlert.js +20 -20
  135. package/build/ox_modules/module-web/commands/assertExist.js +17 -17
  136. package/build/ox_modules/module-web/commands/assertSelectedLabel.js +21 -21
  137. package/build/ox_modules/module-web/commands/assertSelectedValue.js +21 -21
  138. package/build/ox_modules/module-web/commands/assertText.js +21 -21
  139. package/build/ox_modules/module-web/commands/assertTextNotPresent.js +18 -18
  140. package/build/ox_modules/module-web/commands/assertTextPresent.js +18 -18
  141. package/build/ox_modules/module-web/commands/assertTitle.js +19 -19
  142. package/build/ox_modules/module-web/commands/assertValue.js +20 -20
  143. package/build/ox_modules/module-web/commands/back.js +16 -16
  144. package/build/ox_modules/module-web/commands/clear.js +18 -18
  145. package/build/ox_modules/module-web/commands/click.js +25 -25
  146. package/build/ox_modules/module-web/commands/clickHidden.js +23 -23
  147. package/build/ox_modules/module-web/commands/closeWindow.js +15 -15
  148. package/build/ox_modules/module-web/commands/debug.js +15 -15
  149. package/build/ox_modules/module-web/commands/deleteCookies.js +12 -12
  150. package/build/ox_modules/module-web/commands/deselect.js +22 -22
  151. package/build/ox_modules/module-web/commands/doubleClick.js +17 -17
  152. package/build/ox_modules/module-web/commands/dragAndDrop.js +20 -20
  153. package/build/ox_modules/module-web/commands/execute.js +24 -24
  154. package/build/ox_modules/module-web/commands/fileBrowse.js +18 -18
  155. package/build/ox_modules/module-web/commands/findElement.js +19 -19
  156. package/build/ox_modules/module-web/commands/findElements.js +22 -22
  157. package/build/ox_modules/module-web/commands/fullscreenWindow.js +14 -14
  158. package/build/ox_modules/module-web/commands/getAlertText.js +16 -16
  159. package/build/ox_modules/module-web/commands/getAttribute.js +19 -19
  160. package/build/ox_modules/module-web/commands/getBrowserLogs.js +17 -17
  161. package/build/ox_modules/module-web/commands/getCookies.js +13 -13
  162. package/build/ox_modules/module-web/commands/getCssValue.js +19 -19
  163. package/build/ox_modules/module-web/commands/getElementCount.js +17 -17
  164. package/build/ox_modules/module-web/commands/getHTML.js +17 -17
  165. package/build/ox_modules/module-web/commands/getSource.js +16 -16
  166. package/build/ox_modules/module-web/commands/getText.js +18 -18
  167. package/build/ox_modules/module-web/commands/getTitle.js +12 -12
  168. package/build/ox_modules/module-web/commands/getUrl.js +16 -16
  169. package/build/ox_modules/module-web/commands/getValue.js +18 -18
  170. package/build/ox_modules/module-web/commands/getWindowHandles.js +16 -16
  171. package/build/ox_modules/module-web/commands/getWindowSize.js +16 -16
  172. package/build/ox_modules/module-web/commands/getXMLPageSource.js +16 -16
  173. package/build/ox_modules/module-web/commands/index.js +1 -1
  174. package/build/ox_modules/module-web/commands/isAlertPresent.js +16 -16
  175. package/build/ox_modules/module-web/commands/isChecked.js +18 -18
  176. package/build/ox_modules/module-web/commands/isExist.js +19 -19
  177. package/build/ox_modules/module-web/commands/isInteractable.js +22 -22
  178. package/build/ox_modules/module-web/commands/isSelected.js +23 -23
  179. package/build/ox_modules/module-web/commands/isVisible.js +19 -19
  180. package/build/ox_modules/module-web/commands/makeVisible.js +25 -25
  181. package/build/ox_modules/module-web/commands/maximizeWindow.js +14 -14
  182. package/build/ox_modules/module-web/commands/minimizeWindow.js +14 -14
  183. package/build/ox_modules/module-web/commands/mock.js +20 -20
  184. package/build/ox_modules/module-web/commands/mockClearAll.js +12 -12
  185. package/build/ox_modules/module-web/commands/mockRestoreAll.js +12 -12
  186. package/build/ox_modules/module-web/commands/newWindow.js +16 -16
  187. package/build/ox_modules/module-web/commands/open.js +16 -16
  188. package/build/ox_modules/module-web/commands/pause.js +15 -15
  189. package/build/ox_modules/module-web/commands/point.js +21 -21
  190. package/build/ox_modules/module-web/commands/pointJS.js +15 -15
  191. package/build/ox_modules/module-web/commands/refresh.js +15 -15
  192. package/build/ox_modules/module-web/commands/rightClick.js +17 -17
  193. package/build/ox_modules/module-web/commands/rightClickActions.js +19 -19
  194. package/build/ox_modules/module-web/commands/scrollToElement.js +21 -21
  195. package/build/ox_modules/module-web/commands/select.js +23 -23
  196. package/build/ox_modules/module-web/commands/selectFrame.js +24 -24
  197. package/build/ox_modules/module-web/commands/selectWindow.js +27 -27
  198. package/build/ox_modules/module-web/commands/sendKeys.js +22 -22
  199. package/build/ox_modules/module-web/commands/setAutoWaitForAngular.js +20 -20
  200. package/build/ox_modules/module-web/commands/setTimeout.js +21 -21
  201. package/build/ox_modules/module-web/commands/setWindowSize.js +17 -17
  202. package/build/ox_modules/module-web/commands/takeScreenshot.js +17 -17
  203. package/build/ox_modules/module-web/commands/type.js +20 -20
  204. package/build/ox_modules/module-web/commands/verifyAlert.js +20 -20
  205. package/build/ox_modules/module-web/commands/verifyExist.js +17 -17
  206. package/build/ox_modules/module-web/commands/verifySelectedLabel.js +21 -21
  207. package/build/ox_modules/module-web/commands/verifySelectedValue.js +21 -21
  208. package/build/ox_modules/module-web/commands/verifyText.js +21 -21
  209. package/build/ox_modules/module-web/commands/verifyTextNotPresent.js +18 -18
  210. package/build/ox_modules/module-web/commands/verifyTextPresent.js +18 -18
  211. package/build/ox_modules/module-web/commands/verifyTitle.js +19 -19
  212. package/build/ox_modules/module-web/commands/verifyValue.js +20 -20
  213. package/build/ox_modules/module-web/commands/waitForAngular.js +19 -19
  214. package/build/ox_modules/module-web/commands/waitForExist.js +17 -17
  215. package/build/ox_modules/module-web/commands/waitForInteractable.js +17 -17
  216. package/build/ox_modules/module-web/commands/waitForNotExist.js +17 -17
  217. package/build/ox_modules/module-web/commands/waitForNotText.js +20 -20
  218. package/build/ox_modules/module-web/commands/waitForNotValue.js +20 -20
  219. package/build/ox_modules/module-web/commands/waitForText.js +20 -20
  220. package/build/ox_modules/module-web/commands/waitForValue.js +20 -20
  221. package/build/ox_modules/module-web/commands/waitForVisible.js +17 -17
  222. package/build/ox_modules/module-web/commands/waitForWindow.js +22 -22
  223. package/build/ox_modules/module-web.js +105 -100
  224. package/build/ox_modules/module-win/commands/assertText.js +17 -17
  225. package/build/ox_modules/module-win/commands/assertTitle.js +15 -15
  226. package/build/ox_modules/module-win/commands/assertValue.js +14 -14
  227. package/build/ox_modules/module-win/commands/back.js +11 -11
  228. package/build/ox_modules/module-win/commands/clear.js +13 -13
  229. package/build/ox_modules/module-win/commands/click.js +13 -13
  230. package/build/ox_modules/module-win/commands/clickLong.js +14 -14
  231. package/build/ox_modules/module-win/commands/clickMultipleTimes.js +14 -14
  232. package/build/ox_modules/module-win/commands/findElement.js +15 -15
  233. package/build/ox_modules/module-win/commands/findElements.js +15 -15
  234. package/build/ox_modules/module-win/commands/getAppiumLogs.js +12 -12
  235. package/build/ox_modules/module-win/commands/getCurrentWindowHandle.js +15 -15
  236. package/build/ox_modules/module-win/commands/getLocation.js +14 -14
  237. package/build/ox_modules/module-win/commands/getSource.js +12 -12
  238. package/build/ox_modules/module-win/commands/getText.js +14 -14
  239. package/build/ox_modules/module-win/commands/getValue.js +14 -14
  240. package/build/ox_modules/module-win/commands/getWindowHandles.js +15 -15
  241. package/build/ox_modules/module-win/commands/index.js +1 -1
  242. package/build/ox_modules/module-win/commands/isCheckable.js +14 -14
  243. package/build/ox_modules/module-win/commands/isChecked.js +14 -14
  244. package/build/ox_modules/module-win/commands/isClickable.js +14 -14
  245. package/build/ox_modules/module-win/commands/isExist.js +15 -15
  246. package/build/ox_modules/module-win/commands/isSelected.js +14 -14
  247. package/build/ox_modules/module-win/commands/isVisible.js +15 -15
  248. package/build/ox_modules/module-win/commands/open.js +13 -13
  249. package/build/ox_modules/module-win/commands/pause.js +12 -12
  250. package/build/ox_modules/module-win/commands/rightClick.js +13 -13
  251. package/build/ox_modules/module-win/commands/selectWindow.js +23 -23
  252. package/build/ox_modules/module-win/commands/sendKeys.js +22 -22
  253. package/build/ox_modules/module-win/commands/setTimeout.js +17 -17
  254. package/build/ox_modules/module-win/commands/takeScreenshot.js +16 -16
  255. package/build/ox_modules/module-win/commands/tap.js +13 -13
  256. package/build/ox_modules/module-win/commands/type.js +16 -16
  257. package/build/ox_modules/module-win/commands/waitForExist.js +14 -14
  258. package/build/ox_modules/module-win/commands/waitForInteractable.js +16 -16
  259. package/build/ox_modules/module-win/commands/waitForVisible.js +13 -13
  260. package/build/ox_modules/module-win.js +47 -47
  261. package/build/ox_modules/utils.js +8 -8
  262. package/build/ox_reporters/excel/template.json +48 -48
  263. package/build/ox_reporters/html/index.ejs +163 -163
  264. package/build/ox_reporters/html/summary.ejs +77 -77
  265. package/build/ox_reporters/html/tests-details.ejs +134 -134
  266. package/build/ox_reporters/html/tests-devices-browsers.ejs +83 -83
  267. package/build/ox_reporters/reporter-excel.js +1 -1
  268. package/build/ox_reporters/reporter-html.js +1 -1
  269. package/build/ox_reporters/reporter-json.js +1 -1
  270. package/build/ox_reporters/reporter-junit.js +1 -1
  271. package/build/ox_reporters/reporter-pdf.js +1 -1
  272. package/build/ox_reporters/reporter-rp.js +376 -0
  273. package/build/ox_reporters/reporter-xml.js +1 -1
  274. package/build/ox_services/service-devtools/submodule-network.js +1 -1
  275. package/build/ox_services/service-devtools.js +1 -1
  276. package/build/reporter/FileReporterBase.js +1 -1
  277. package/build/reporter/ReportAggregator.js +110 -43
  278. package/build/reporter/ReporterBase.js +2 -2
  279. package/build/runners/WorkerProcess.js +1 -1
  280. package/build/runners/cucumber/CucumberEventListener.js +1 -1
  281. package/build/runners/cucumber/CucumberReporter.js +1 -1
  282. package/build/runners/cucumber/CucumberWorker.js +1 -1
  283. package/build/runners/cucumber/index.js +1 -1
  284. package/build/runners/cucumber/worker.js +1 -1
  285. package/build/runners/index.js +1 -1
  286. package/build/runners/oxygen/OxygenWorker.js +1 -1
  287. package/build/runners/oxygen/index.js +37 -22
  288. package/build/runners/oxygen/worker.js +1 -1
  289. package/config/default.json +6 -6
  290. package/log.txt +1614 -0
  291. package/package.json +136 -135
  292. package/types/index.d.ts +70 -70
  293. package/types/module-eyes.d.ts +39 -39
  294. package/types/module-http.d.ts +163 -163
  295. package/types/module-log.d.ts +34 -34
  296. package/types/module-mob.d.ts +966 -966
  297. package/types/module-pdf.d.ts +40 -40
  298. package/types/module-proxy.d.ts +100 -100
  299. package/types/module-shell.d.ts +24 -24
  300. package/types/module-utils.d.ts +99 -99
  301. package/types/module-web.d.ts +1053 -1053
  302. package/types/module-win.d.ts +352 -352
  303. package/types/oxygen.d.ts +53 -53
package/CHANGELOG.md CHANGED
@@ -1,1687 +1,1687 @@
1
- # CHANGELOG
2
-
3
- ## v1.37.8 (2025-03-03)
4
-
5
- #### :beetle: Bug Fix
6
- * Do not try to fetch BrowserStack URL for non BrowserStack tests.
7
-
8
- ## v1.37.7 (2025-02-18)
9
-
10
- #### :nail_care: Polish
11
- * Make bstack options copying more generic.
12
-
13
- ## v1.37.6 (2025-01-08)
14
-
15
- #### :beetle: Bug Fix
16
- * Fix pass through of the `bstack:localIdentifier` capability.
17
-
18
- ## v1.37.5 (2025-01-07)
19
-
20
- #### :beetle: Bug Fix
21
- * Fix test status not being set for BrowserStack tests.
22
-
23
- #### :house: Internal
24
- * Store BrowserStack result url in test result.
25
-
26
- ## v1.37.4 (2024-12-24)
27
-
28
- #### :beetle: Bug Fix
29
- * Fix suite execution not working properly on BrowserStack.
30
-
31
- ## v1.37.3 (2024-12-19)
32
-
33
- #### :beetle: Bug Fix
34
- * Properly pass BrowserStack capabilities.
35
-
36
- ## v1.37.2 (2024-12-04)
37
-
38
- #### :beetle: Bug Fix
39
- * Produce proper error when trying to add non existent file with `ox.addAttachment`.
40
-
41
- #### :house: Internal
42
- * Handle re-run delay and re-run count.
43
-
44
- ## v1.37.1 (2024-09-12)
45
-
46
- #### :house: Internal
47
- * Revert odbc.
48
-
49
- ## v1.37.0 (2024-09-12)
50
-
51
- #### :tada: New Feature
52
- * Add `soap.authClientSSL` and `soap.authClientSSLPFX`.
53
-
54
- #### :house: Internal
55
- * Bump odbc.
56
-
57
- ## v1.36.0 (2024-08-19)
58
-
59
- #### :beetle: Bug Fix
60
- * Fix crash when wdio element command fails from within a user script.
61
- * Fix crash when re-running failed tests.
62
-
63
- ## v1.35.2 (2024-07-30)
64
-
65
- #### :beetle: Bug Fix
66
- * Fix invalid transaction hierarchy in results when using hooks.
67
-
68
- ## v1.35.0 (2024-06-18)
69
-
70
- #### :tada: New Feature
71
- * Add support for sending emails with `email` module.
72
-
73
- ## v1.34.1 (2024-06-10)
74
-
75
- #### :house: Internal
76
- * Downgrade wdio for node 12 compatibility in IDE.
77
-
78
- ## v1.34.0 (2024-06-07)
79
-
80
- #### :tada: New Feature
81
- * Add NTLM authentication support to `http` module.
82
-
83
- ## v1.33.6 (2024-06-06)
84
-
85
- #### :house: Internal
86
- * Limit transaction name to 512 characters.
87
-
88
- ## v1.33.5 (2024-05-29)
89
-
90
- #### :beetle: Bug Fix
91
- * Fix `web.waitForAngular` when running inside an iframe.
92
-
93
- ## v1.33.4 (2024-05-10)
94
-
95
- #### :beetle: Bug Fix
96
- * Fix incorrect processing of parameters.
97
- * Better handle situations when taking screenshots fails.
98
-
99
- #### :house: Internal
100
- * Bump webdriverio dependencies.
101
-
102
- ## v1.33.2 (2024-05-24)
103
-
104
- #### :house: Internal
105
- * Downgrade chrome-har version for node 12 compatibility.
106
-
107
- ## v1.33.1 (2024-03-20)
108
-
109
- #### :beetle: Bug Fix
110
- * Properly handle non-string message argument in `assert.fail` and `assert.pass`.
111
-
112
- ## v1.33.0 (2024-03-11)
113
-
114
- #### :tada: New Feature
115
- * Add soft-wait mode for `web.waitForAngular`.
116
- * Add support for reporting request/response related information in HTTP module.
117
-
118
- #### :beetle: Bug Fix
119
- * Fix timeout processing in `web.waitForAngular`.
120
-
121
- #### :beetle: Bug Fix
122
- * Handle internal `recordVideo` flag in web module.
123
- * Bump dependencies.
124
-
125
- ## v1.32.1 (2024-03-01)
126
-
127
- #### :nail_care: Polish
128
- * Process "javascript error" errors.
129
- * Process "still not clickable after" errors.
130
-
131
- #### :house: Internal
132
- * Bump dependencies.
133
-
134
- ## v1.32.0 (2023-12-15)
135
-
136
- #### :tada: New Feature
137
- * Add `web.mockClearAll` and `web.mockRestoreAll`.
138
-
139
- ## v1.31.0 (2023-12-08)
140
-
141
- #### :tada: New Feature
142
- * Allow to capture and attach test video to test results if running against a Selenoid hub.
143
- * Add `web.mock` method allowing to mock network responses.
144
-
145
- #### :nail_care: Polish
146
- * Minor improvements to API documentation.
147
-
148
- #### :beetle: Bug Fix
149
- * Mark transaction as warning if one of steps has warning status.
150
-
151
- ## v1.30.3 (2023-09-01)
152
-
153
- #### :beetle: Bug Fix
154
- * Fix broken `--rf` switch.
155
-
156
- #### :nail_care: Polish
157
- * Do not wrap strings logged with `log.*` commands in double quotes.
158
-
159
- ## v1.30.2 (2023-08-31)
160
-
161
- #### :beetle: Bug Fix
162
- * Fix parallel case execution inside suites.
163
-
164
- ## v1.30.1 (2023-08-29)
165
-
166
- #### :beetle: Bug Fix
167
- * Fix step's Warning status not being properly processed.
168
- * Improve the way test result status for suites with Skipped and Warning statuses is determined.
169
-
170
- ## v1.30.0 (2023-08-15)
171
-
172
- #### :tada: New Feature
173
- * Add `utils.transaction` command.
174
-
175
- ## v1.29.1 (2023-07-26)
176
-
177
- #### :beetle: Bug Fix
178
- * Invalid chrome-remote-interface require.
179
-
180
- ## v1.29.0 (2023-07-26)
181
-
182
- #### :tada: New Feature
183
- * Add `web.verify*` commands.
184
-
185
- #### :house: Internal
186
- * Bump dependencies.
187
-
188
- ## v1.28.0 (2023-07-14)
189
-
190
- #### :tada: New Feature
191
- * Add support for parallel execution of cases inside a suite.
192
- * Expose `attributes` object to Oxygen scripts.
193
-
194
- #### :beetle: Bug Fix
195
- * `clearDeviceLogsOnStart` capability not working properly.
196
- * Make sure to set test status to warning if one of the step's status is warning.
197
- * Generate HTML report by default when running tests from Oxygen CLI.
198
- * EventEmitter memory leak.
199
- * Do not crash on invalid arguments to `transaction` commands.
200
-
201
- #### :house: Internal
202
- * Bump dependencies.
203
-
204
- ## v1.27.5 (2023-04-14)
205
-
206
- #### :tada: New Feature
207
- * Allow "web" module to run Appium-based tests.
208
-
209
- #### :house: Internal
210
- * Bump dependencies.
211
-
212
- ## v1.27.4 (2023-02-23)
213
-
214
- #### :tada: New Feature
215
- * Add types to Oxygen module to allow auto completion in popular IDEs.
216
-
217
- #### :beetle: Bug Fix
218
- * Issue with multi iterations debugging.
219
- * Fix issue with re-run failed tests mechanism.
220
-
221
- #### :house: Internal
222
- * Bump dependencies.
223
-
224
- ## v1.27.2 (2023-02-09)
225
-
226
- #### :beetle: Bug Fix
227
- * Browser windows were terminated instead of remaining open on failed tests in Oxygen IDE.
228
-
229
- #### :house: Internal
230
- * Bump dependencies.
231
-
232
- ## v1.27.0 (2023-01-04)
233
-
234
- #### :beetle: Bug Fix
235
- * Restore node 12 compatibility.
236
-
237
- #### :house: Internal
238
- * Bump dependencies.
239
-
240
- ## v1.26.0 (2022-12-28)
241
-
242
- #### :tada: New Feature
243
- * Add `Add web.network.blockUrls`.
244
- * Add `ox.addAttribute` function for adding custom test attributes to the test result.
245
-
246
- ## v1.25.0 (2022-12-22)
247
-
248
- #### :beetle: Bug Fix
249
- * Scripts with deeply nested `init` methods failed to execute in some situations when part of a Suite.
250
-
251
- ## v1.24.9 (2022-12-09)
252
-
253
- #### :house: Internal
254
- * Downgrade mailparser to support node 12.
255
-
256
- ## v1.24.8 (2022-12-09)
257
-
258
- #### :beetle: Bug Fix
259
- * Session not being dispossed for web tests.
260
-
261
- #### :house: Internal
262
- * Bump dependencies.
263
-
264
- ## v1.24.7 (2022-12-08)
265
-
266
- #### :beetle: Bug Fix
267
- * Fix assertions not working in `http` module for non 2xx/3xx return codes.
268
- * Fix `soap` module not working.
269
- * Throw `APPIUM_SESSION_TIMEOUT` instead of `SELENIUM_SESSION_TIMEOUT` for mobile tests.
270
-
271
- #### :house: Internal
272
- * Bump dependencies.
273
-
274
- ## v1.24.6 (2022-11-04)
275
-
276
- #### :house: Internal
277
- * Bump dependencies.
278
-
279
- ## v1.24.5 (2022-09-22)
280
-
281
- #### :house: Internal
282
- * Bump dependencies.
283
-
284
- ## v1.24.4 (2022-08-24)
285
-
286
- #### :beetle: Bug Fix
287
- * Fix value parsing in `web.waitFor*` commands (by Francois Wauquier).
288
- * Fix issue with Applitools when API key is passed via "init" method.
289
-
290
- #### :house: Internal
291
- * Expose oxygen internal variables to debugger.
292
- * Bump dependencies.
293
-
294
- ## v1.24.3 (2022-08-12)
295
-
296
- #### :beetle: Bug Fix
297
- * Additional fixes for MODULE_NOT_INITIALIZED error when running multiple tests which reference an external script containing `*.init` commands.
298
- * Do not include browserName when bundleId is specified in mobile capabilities.
299
-
300
- ## v1.24.2 (2022-08-05)
301
-
302
- #### :tada: New Feature
303
- * Add `web.isInteractable`.
304
-
305
- #### :beetle: Bug Fix
306
- * Fixed MODULE_NOT_INITIALIZED error when running multiple tests which reference an external script containing `*.init` commands.
307
-
308
- #### :house: Internal
309
- * Bump dependencies.
310
-
311
- ## v1.24.1 (2022-07-29)
312
-
313
- #### :beetle: Bug Fix
314
- * Closing bracket indentation in `log.*` output.
315
- * Handing of objects with circular references in `log.*` commands.
316
- * `web.assertTextPresent` and `web.assertTextNotPresent` not properly restoring timeouts on exit.
317
-
318
- #### :house: Internal
319
- * Bump dependencies.
320
-
321
- ## v1.24.0 (2022-07-19)
322
-
323
- #### :tada: New Feature
324
- * Add `twilio.getLastSentApiSms` (by Akiva Brookler).
325
-
326
- #### :house: Internal
327
- * Bump dependencies.
328
-
329
- ## v1.23.2 (2022-06-17)
330
-
331
- #### :beetle: Bug Fix
332
- * Fix test execution on Perfecto Mobile.
333
-
334
- ## v1.23.0 (2022-06-15)
335
-
336
- #### :tada: New Feature
337
- * Add `db.callProcedure`.
338
-
339
- #### :beetle: Bug Fix
340
- * Fix test execution on Firefox.
341
- * `http`: fix issue with "Cannot read property 'includes' of undefined" error when content-type header is missing in the response.
342
-
343
- #### :house: Internal
344
- * Bump dependencies.
345
-
346
- ## v1.22.1 (2022-04-28)
347
-
348
- #### :beetle: Bug Fix
349
- * Fix test execution on Firefox.
350
- * Convert body to object in http.get when nessasry.
351
- * Catch and ignore device logs retrieval issue, if cloud provider doesn't support this operation.
352
-
353
- ## v1.22.0 (2022-01-14)
354
-
355
- #### :tada: New Feature
356
- * Add `utils.xmlToJson`.
357
-
358
- #### :beetle: Bug Fix
359
- * Invalid line number printed for certain errors.
360
- * Number of issues with BrowserStack integration.
361
- * Number of issues with `shell` module.
362
-
363
- #### :nail_care: Polish
364
- * Documentation improvements.
365
- * Increase `http` module's default response timeout from 30 to 60 seconds.
366
-
367
- #### :house: Internal
368
- * Bump dependencies.
369
-
370
- ## v1.21.0 (2022-01-17)
371
-
372
- #### :boom: Breaking Change
373
- * Previously deprecated `web.selectWindow` with no arguments has been removed.
374
-
375
- #### :tada: New Feature
376
- * `email` module: add support for base64 encoded body and option to download email attachments.
377
- * Add `utils.dnsResolve`.
378
- * Add `utils.readXlsx`.
379
- * Add `web.maximizeWindow`, `web.minimizeWindow`, `web.fullscreenWindow`.
380
- * Add `soap.getLastResponseHeaders`.
381
- * `soap.get`: allow passing HTTP request headers.
382
-
383
- #### :beetle: Bug Fix
384
- * Fix `mob.sendKeys` argument validation.
385
- * `web.setTimeout` not having any effect on `web.open`.
386
- * `web.waitForNotExist` not working as expected.
387
- * Fix memory leak in `db` module.
388
- * `assert.equal` not working correctly when input strings consisted of digits.
389
-
390
- #### :nail_care: Polish
391
- * Documentation improvements.
392
-
393
- #### :house: Internal
394
- * Refactor everything for more asynchronicity.
395
- * Use `got` instead of the no longer supported `request` for `http` module.
396
- * Bump other dependencies.
397
-
398
- ## v1.20.2 (2021-09-05)
399
-
400
- #### :beetle: Bug Fix
401
- * Fix key usage in `utils.encrypt`.
402
-
403
- ## v1.20.1 (2021-08-06)
404
-
405
- #### :beetle: Bug Fix
406
- * Issue with test execution on Perfecto Mobile.
407
-
408
- #### :nail_care: Polish
409
- * Improve error handling in `utils.decrypt`.
410
-
411
- ## v1.20.0 (2021-08-04)
412
-
413
- #### :boom: Breaking Change
414
- * `web.isChecked` has been deprecated and will be removed in future versions. Use `web.isSelected` instead.
415
-
416
- #### :tada: New Feature
417
- * Support for NodeJS 14.
418
- * Added `utils.readCsv` and `utils.writeCsv`.
419
- * Allow filtering by source number in `twilio.getLastSms`.
420
- * Added `utils.encrypt` and `utils.decrypt`.
421
- * Added `web.waitForAngular` and `web.setAutoWaitForAngular`.
422
- * Added `mob.selectWindow`, `mob.select`.
423
- * Added `http.patch`.
424
-
425
- #### :beetle: Bug Fix
426
- * `web.isSelected` not working in certain situations.
427
- * Index repeating transactions to prevent duplicate transaction names in results.
428
- * Failure taking mobile screenshots in certain situations.
429
-
430
- #### :nail_care: Polish
431
- * Documentation improvements.
432
- * Notify when `mob` command is being used in wrong mobile context.
433
- * Improve error handling in `http` module.
434
-
435
- #### :house: Internal
436
- * Upgrade to WDIO v7 and bump other dependencies.
437
-
438
- ## v1.19.1 (2021-06-01)
439
-
440
- #### :beetle: Bug Fix
441
- * `http` and `utils` module not working when using multiple iteration.
442
-
443
- #### :nail_care: Polish
444
- * Do not invoke module disposal mechanism on dead sessions (which previously led to test finalization taking a few minutes in certain situations).
445
- * Miscellaneous internal cleanups.
446
-
447
- ## v1.19.0 (2021-05-25)
448
-
449
- #### :boom: Breaking Change
450
- * `http` module will no longer throw on erroneous HTTP status codes, and will return the request/response details instead.
451
-
452
- #### :tada: New Feature
453
- * Add `web.network.waitForNotUrl`.
454
- * Return `responseBody` and `requestPostData` in requests recorded with `web.network`.
455
- * Add `web.newWindow`.
456
-
457
- #### :beetle: Bug Fix
458
- * PDF and XML reporter not working.
459
- * `pdf.count` ignoring strings which appear multiple times on the same line.
460
- * Ignore "ignored" steps in Cucumber.
461
- * Make status argument in `web.dispose` and `mob.dispose` optional.
462
- * Issue with converting Chai assertions to Oxygen errors.
463
- * Various other fixes.
464
-
465
- #### :nail_care: Polish
466
- * Better error handling in debugger.
467
- * Better error handling when parsing JSON/CSV/XLSX parameter files.
468
- * Process "invalid selector" errors.
469
- * Improved duration formatting in test reports.
470
- * Add validation for timeout arguments and notify the user in case of invalid values.
471
- * Removed redundant module disposal.
472
-
473
- #### :house: Internal
474
- * Bump dependencies.
475
- * Support for REPL.
476
-
477
- ## v1.18.0 (2021-03-24)
478
-
479
- #### :tada: New Feature
480
- * Add `utils.pause`.
481
-
482
- #### :beetle: Bug Fix
483
- * `web.click`, `web.rightClick`, `web.doubleClick` not working on IE < 11.
484
-
485
- #### :nail_care: Polish
486
- * Print more details on `http` module failures.
487
- * Documentation updates.
488
-
489
- ## v1.17.0 (2021-03-22)
490
-
491
- #### :boom: Breaking Change
492
- * `http` module has been rewritten to support more features. As a result some methods, their arguments, and return types were substantially changed. See API documentation for more details.
493
-
494
- #### :tada: New Feature
495
- * Add `soap.setProxy`.
496
- * Add `autoDispose` setting to `oxygen.conf` to control whether to dispose modules automatically between test iterations.
497
-
498
- #### :beetle: Bug Fix
499
- * `web.click` and `web.clickHidden` not working on IE < 11.
500
- * `web.fileBrowse` not working.
501
- * Issue with hooks in Cucumber tests.
502
- * Various other fixes.
503
-
504
- #### :nail_care: Polish
505
- * Process "element not interactable" errors.
506
-
507
- #### :house: Internal
508
- * Bump dependencies.
509
-
510
- ## v1.16.1 (2021-02-15)
511
-
512
- #### :beetle: Bug Fix
513
- * Issue with module disposal.
514
-
515
- ## v1.16.0 (2021-02-09)
516
-
517
- #### :tada: New Feature
518
- * New command `mob.longPressKeyCode`.
519
- * New command `web.rightClickActions`
520
- * Node module `proxy`.
521
-
522
- #### :beetle: Bug Fix
523
- * Error parsing in `db` module.
524
- * Number of issues with session disposal.
525
-
526
- ## v1.15.0 (2021-01-16)
527
-
528
- #### :tada: New Feature
529
- * Added `*.waitForInteractable`.
530
-
531
- #### :beetle: Bug Fix
532
- * `web.switchToWindow` crashes when one of the windows closes mid-way.
533
- * `web.switchToWindow` crashing in certain situations.
534
- * Memory leak during test disposal.
535
- * Various issues with `mob.scrollIntoElement`, `mob.swipe`, `mob.swipeElement`, `mob.swipeScreen`.
536
- * Script errors not being processed.
537
- * Handling of missing locator arguments in `mob` module.
538
-
539
- #### :house: Internal
540
- * Pass console output from child process to external libraries.
541
- * Number of internal fixes.
542
- * Bump dependencies.
543
-
544
- ## v1.14.3 (2020-11-27)
545
-
546
- #### :beetle: Bug Fix
547
- * Fix ChromeDriver cleanup on Linux.
548
-
549
- #### :house: Internal
550
- * Bump dependencies.
551
-
552
- ## v1.14.2 (2020-11-20)
553
-
554
- #### :beetle: Bug Fix
555
- * Regression in `web.clickHidden`.
556
- * Invalid filename printed in error details for certain errors.
557
-
558
- ## v1.14.1 (2020-11-16)
559
-
560
- #### :tada: New Feature
561
- * Automatic retry on `STALE_ELEMENT_REFERENCE`.
562
-
563
- #### :beetle: Bug Fix
564
- * Fixed `*.findElements` to throw errors instead of returning an empty array for anything else except `ELEMENT_NOT_FOUND`.
565
-
566
- #### :nail_care: Polish
567
- * Process "module not found" errors.
568
- * Process "window not found" errors.
569
- * Process "The element with selector * you trying to pass into the execute method wasn't found" errors.
570
-
571
- ## v1.14.0 (2020-11-08)
572
-
573
- #### :boom: Breaking Change
574
- * `*.findElements` will return an empty array instead of failing when no elements are found.
575
-
576
- #### :beetle: Bug Fix
577
- * `win.selectWindow` not working with `title=` prefix.
578
- * Test name not being set for tests executed on PerfectoMobile provider.
579
-
580
- ## v1.13.7 (2020-11-03)
581
-
582
- #### :beetle: Bug Fix
583
- * Fixed issue with stopping `mob` and `win` tests.
584
- * Fixed issue with re-running failed tests.
585
-
586
- #### :house: Internal
587
- * Bump dependencies.
588
-
589
- ## v1.13.6 (2020-10-27)
590
-
591
- #### :beetle: Bug Fix
592
- * `onBeforeCase` and `onAfterCase` support in Cucumber tests.
593
- * Fixed number of issues with Edge when using cloud providers.
594
-
595
- #### :house: Internal
596
- * Collect logs and HAR for Cucumber tests.
597
-
598
- ## v1.13.5 (2020-10-19)
599
-
600
- #### :beetle: Bug Fix
601
- * Fixed `web.sendKeys` throwing an error if currently active window is closed during the command execution.
602
- * Fixed `web.click` and `web.clickHidden` to work in IE < 9 compatibility mode.
603
- * RegExp arguments not properly displayed in reports.
604
-
605
- #### :house: Internal
606
- * Bump dependencies.
607
-
608
- ## v1.13.4 (2020-10-13)
609
-
610
- #### :beetle: Bug Fix
611
- * Fixed maximum call stack size exceeded issue (#102).
612
-
613
- ## v1.13.3 (2020-10-12)
614
-
615
- #### :beetle: Bug Fix
616
- * Add option to enable SNI in `email` module. This fixes issue with connection to Gmail.
617
-
618
- ## v1.13.2 (2020-10-08)
619
-
620
- #### :house: Internal
621
- * Fixed parameter handling when using re-run option.
622
-
623
- ## v1.13.1 (2020-10-08)
624
-
625
- #### :house: Internal
626
- * Added internal option for disabling screenshots on failure.
627
-
628
- ## v1.13.0 (2020-10-08)
629
-
630
- #### :tada: New Feature
631
- * Support for `beforeCommand` and `afterCommand` hooks.
632
-
633
- #### :boom: Breaking Change
634
- * `web.dispose` and `mob.dispose` now expects a mandatory status argument.
635
-
636
- #### :beetle: Bug Fix
637
- * `web.waitForVisible` was ignoring the timeout argument.
638
-
639
- #### :nail_care: Polish
640
- * Made CSV parsing errors more user friendly.
641
- * Print more detailed failure information for Cucumber tests.
642
-
643
- #### :house: Internal
644
- * Added BrowserStack integration.
645
- * Fixed issue with SauceLab session disposal.
646
- * Fixed domContentLoadedEvent and loadEvent calculation.
647
- * Added internal option to re-run failed tests.
648
- * Updated WDIO to v6.6.0.
649
-
650
- ## v1.12.0 (2020-09-27)
651
-
652
- #### :boom: Breaking Change
653
- * Execute each Case using new browser session when executing Suites.
654
-
655
- #### :beetle: Bug Fix
656
- * Test initialization on Edge + BrowserStack.
657
- * `web.getXMLPageSource` to work on Edge.
658
-
659
- #### :nail_care: Polish
660
- * Fail silently if click fails due to js injection error.
661
- * Fallback to js click when ChromeDriver fails due to element being located in Shadow DOM.
662
-
663
- #### :house: Internal
664
- * Fixed an issue with performance timings not being recorded.
665
-
666
- ## v1.11.0 (2020-09-21)
667
-
668
- #### :tada: New Feature
669
- * Add `mob.assertAlert`.
670
- * Add `mob.getBrowserLogs`.
671
-
672
- #### :beetle: Bug Fix
673
- * `timeout` argument being ignored in some commands.
674
- * Number of issues in `alert` related commands.
675
-
676
- #### :book: Documentation
677
- * Add missing accessibility id locator to win docs.
678
-
679
- #### :nail_care: Polish
680
- * Make CSV parsing errors more user-friendly.
681
- * Increase default 3000ms `waitFor*` timeout to 5000ms.
682
- * Produce proper error if `web.pointJS` is not supported on IE.
683
- * Throw a more detailed error when `web.clickHidden` is not supported on IE.
684
-
685
- #### :house: Internal
686
- * Fix performance stats not being fetched correctly.
687
- * Fix logs retrieval.
688
- * Code refactoring.
689
- * Bump dependencies.
690
-
691
- ## v1.10.0 (2020-09-13)
692
-
693
- #### :boom: Breaking Change
694
- * Minimal supported node.js version 10.18.1.
695
-
696
- #### :beetle: Bug Fix
697
- * No error details shown for oxygen.po/conf/env.js errors.
698
- * Filename not shown for certain script errors.
699
- * Issue with `*.network` module re-initialization.
700
-
701
- #### :nail_care: Polish
702
- * Make transaction's duration an aggregate of all the underlying command durations.
703
-
704
- ## v1.9.0 (2020-09-09)
705
-
706
- #### :boom: Breaking Change
707
- * `soap.describe` returns object instead of a serialized representation.
708
-
709
- #### :tada: New Feature
710
- * Add `web.isChecked`.
711
-
712
- #### :beetle: Bug Fix
713
- * `web.getHtml` wasn't available.
714
- * Execution on MicrosoftEdge.
715
- * width and height wasn't adjusted properly in `web.makeVisible`.
716
- * Memory leak when using multiple iterations.
717
- * Shared `vars` object for passing data between tests not working.
718
-
719
- #### :nail_care: Polish
720
- * Add error handling for network errors on Chrome 85.
721
-
722
- #### :house: Internal
723
- * Fixed breakpoints not working with UNC paths.
724
- * Fixed mobile logs not being collected.
725
-
726
- ## v1.8.2 (2020-08-30)
727
-
728
- #### :house: Internal
729
- * Downgrade WDIO due to a regression.
730
-
731
- ## v1.8.1 (2020-08-30)
732
-
733
- #### :house: Internal
734
- * Simplify debugger's path to url conversion.
735
- * Do not close browser on failed tests (when running through IDE).
736
- * Bump dependencies.
737
-
738
- ## v1.8.0 (2020-08-25)
739
-
740
- #### :tada: New Feature
741
- * Add `web.getHTML`.
742
-
743
- #### :nail_care: Polish
744
- * Throw proper error on `mob.click` in webview context if element is not interactable.
745
-
746
- #### :house: Internal
747
- * Fix filename handling in debugger.
748
- * Bump WDIO to v6.4.2.
749
-
750
- ## v1.7.2 (2020-08-23)
751
-
752
- #### :beetle: Bug Fix
753
- * `ID` locators not working in `win` module.
754
- * `web.click` working in asynchronous mode instead of synchronous.
755
-
756
- #### :book: Documentation
757
- * Fixed `win`, `web`, and `mob` modules formatting.
758
-
759
- #### :house: Internal
760
- * Bump and cleanup dependencies.
761
-
762
- ## v1.7.1 (2020-08-22)
763
-
764
- #### :beetle: Bug Fix
765
- * Regression with `services` and `modules` settings in `oxygen.conf` being ignored.
766
-
767
- ## v1.7.0 (2020-08-20)
768
-
769
- #### :tada: New Feature
770
- * Support for BrowserStack provider.
771
- * Take screenshots for all available windows including the titles on errors.
772
- * Improved performance during test initialization.
773
-
774
- #### :beetle: Bug Fix
775
- * Fixed `web.makeVisible` to work with elements with 0 height/width and `!important` style applied.
776
- * `web.assertTextPresent` and `web.assertTextNotPresent` not producing proper errors.
777
- * Invalid oxygen.conf/po/env.js files not being handled properly.
778
- * Fixed npm updates check during `npm root -g` invocation not being disabled.
779
- * Produce proper errors when `web.network` is not initialized.
780
- * Fix tests getting stuck sometimes on low level WDIO errors.
781
- * `require` not working from within `oxygen.conf/po/env.js` files.
782
-
783
- #### :nail_care: Polish
784
- * Improved reports generated by cli to specify browser/device name next to suite details.
785
- * Handle additional WebDriver errors.
786
-
787
- #### :book: Documentation
788
- * `email` module fixes.
789
-
790
- #### :house: Internal
791
- * Fixed number of issues with results, environments, and breakpoints processing.
792
- * WebDriverIO updated to v6.4.0.
793
- * Bump dependencies.
794
-
795
- ## v1.6.1 (2020-07-03)
796
-
797
- #### :beetle: Bug Fix
798
- * Fix npm root -g mechanizm for macos
799
-
800
- ## v1.6.0 (2020-06-25)
801
-
802
- #### :tada: New Feature
803
- * Support for Node.js 12.
804
- * `web.getWindowSize` for returning browser window dimensions.
805
- * `assert.pass` for arbitrary stopping test execution.
806
-
807
- #### :beetle: Bug Fix
808
- * Browser session not being disposed in some cases.
809
- * `web.assertTextPresent` and `web.assertTextNotPresent` not working correctly.
810
- * `web.point` not working correctly.
811
- * `win.isSelected` not working correctly.
812
- * Environment definition not being read from oxygen.conf.js.
813
- * Exit code returned by Oxygen not reflecting the test status.
814
-
815
- #### :nail_care: Polish
816
- * `mob.swipeElement` no longer requires `speed` argument.
817
- * Improved `mob.swipe` behavior.
818
- * Improved `web.assertSelectedLabel` and `web.assertSelectedValue` to accept optional argument specifying whether to wait for element's visibility.
819
- * `web.getText` no longer requires element to be visible.
820
-
821
- #### :book: Documentation
822
- * Various documentation fixes.
823
-
824
- ## v1.5.1 (2020-06-17)
825
-
826
- #### :beetle: Bug Fix
827
- * Regression related to execution of Cucumber projects.
828
- * Regression related to execution of single test scripts.
829
-
830
- #### :nail_care: Polish
831
- * Improve command argument serialization.
832
-
833
- ## v1.5.0 (2020-06-15)
834
-
835
- #### :tada: New Feature
836
- * Added support for defining suites in separate files.
837
-
838
- #### :beetle: Bug Fix
839
- * Re-enabled `network` module.
840
-
841
- ## v1.4.1 (2020-06-09)
842
-
843
- #### :tada: New Feature
844
- * Added support for finding windows by their URL to `web.selectWindow` and `web.waitForWindow`.
845
- Option to select/waitFor last opened windows has been deprecated and will be removed in the future.
846
-
847
- #### :beetle: Bug Fix
848
- * `mob.swipeElement` not working due to a typo.
849
-
850
- #### :book: Documentation
851
- * Various documentation fixes.
852
-
853
- #### :house: Internal
854
- * WebDriverIO updated to v5.23.0.
855
-
856
- ## v1.4.0 (2020-06-07)
857
-
858
- #### :tada: New Feature
859
- * `mob.getTitle`
860
- * `mob.getUrl`
861
-
862
- #### :beetle: Bug Fix
863
- * `web.type` on Firefox not triggering some events attached to the element.
864
- * Browser not being closed on test completion when multiple tabs or windows are opened.
865
- * `web.pointJS` not working on Internet Explorer.
866
- * Incorrect command duration in HTML reports.
867
-
868
- #### :nail_care: Polish
869
- * Improve `web.makeVisible` to adjust visibility of parent elements as well.
870
- * Handle 'Element not clickable at point' errors produced by IE.
871
- * Handle 'element click intercepted' errors.
872
- * Handle 'No active session with ID' errors.
873
-
874
- #### :book: Documentation
875
- * Improve documentation for `web.scrollIntoView`, `mob.getAlertText`, `*.getDriver`.
876
-
877
- #### :house: Internal
878
- * Initial support for PerfectoMobile provider.
879
- * Increase `connectionRetryTimeout` and decrease `connectionRetryCount` in order to better handle slowly loading pages.
880
- * Bump dependencies.
881
-
882
- ## v1.3.0 (2020-05-10)
883
-
884
- #### :tada: New Feature
885
- * Add `assert.contain`.
886
-
887
- #### :beetle: Bug Fix
888
- * Log entries generated by Cucumber runner.
889
- * Missing "location" in some thrown errors.
890
-
891
- ## v1.2.5 (2020-05-04)
892
-
893
- #### :beetle: Bug Fix
894
- * Number of issues to related to module initialization.
895
- * Cucumber runner not populating logs data.
896
-
897
- ## v1.2.0 (2020-04-13)
898
-
899
- #### :tada: New Feature
900
- * Add `web.pointJS`.
901
-
902
- #### :beetle: Bug Fix
903
- * `--p=json` switch not working.
904
- * Number of issues related to running tests on LambdaTest cloud provider.
905
- * Relative paths in `pdf.assertNot` and `pdf.count`.
906
-
907
- #### :nail_care: Polish
908
- * Argument validation for `*.type` and `*.open` commands.
909
- * Process 'Failed to create session' errors.
910
-
911
- #### :book: Documentation
912
- * Fix `web.deleteCookies` documentation.
913
-
914
- #### :house: Internal
915
- * WebDriverIO updated to v5.22.1.
916
- * Improvements to browser disposal, debugger support, and SauceLabs provider support.
917
-
918
- ## v1.1.3 (2020-03-15)
919
-
920
- #### :beetle: Bug Fix
921
- * Debug logs were not added to JSON results.
922
-
923
- #### :nail_care: Polish
924
- * Properly process 'invalid url' errors.
925
-
926
- #### :house: Internal
927
- * Update dependencies.
928
-
929
- ## v1.1.2 (2020-03-06)
930
-
931
- #### :house: Internal
932
- * Fix process disposal.
933
-
934
- ## v1.1.1 (2020-02-29)
935
-
936
- #### :nail_care: Polish
937
- * Properly process 'invalid css selector' errors.
938
-
939
- #### :house: Internal
940
- * Remove duplicate dependency.
941
-
942
- ## v1.1.0 (2020-02-27)
943
-
944
- #### :boom: Breaking Change
945
- * `log.*` will automatically serialize the value if it's a complex object. Using `log.info(JSON.stringify(obj))` is no longer required.
946
- * Minimum required version of Node.js has been raised to v10.14. Although Oxygen will work in part on older versions, anything below 10.14 is no longer officially supported.
947
-
948
- #### :beetle: Bug Fix
949
- * `log.*` not working with non-string objects.
950
- * Parameters not loaded correctly from CSV if header contains spaces.
951
- * Error handling in `web.assertAlert`, `web.alertAccept`, `web.alertDismiss` commands.
952
- * Processing of ChomeDriver version mismatch errors.
953
- * Generate HTML reports by default even if `--rf` switch is not specified.
954
- * Regression with `assert` commands no longer taking screenshot for web and mobile tests.
955
-
956
- #### :house: Internal
957
- * Update dependencies.
958
- * Various other small fixes & improvements.
959
-
960
- ## v1.0.3 (2020-02-13)
961
-
962
- #### :beetle: Bug Fix
963
- * Stopping test not working reliably.
964
- * Loading custom globally installed modules not working with `require`.
965
- * Confusing error message when required file is not found.
966
-
967
- ## v1.0.2 (2020-02-12)
968
-
969
- #### :beetle: Bug Fix
970
- * `--server` switch not working with mobile tests.
971
- * `--ro` switch not working.
972
- * `id` locator in web tests not working if it contains illegal characters.
973
- * Test doesn't run if empty parameters file is used.
974
-
975
- #### :nail_care: Polish
976
- * Update help screen.
977
- * Properly process 'Specified URL is not valid' errors.
978
- * Properly process 'invalid xpath' errors for IE.
979
-
980
- #### :house: Internal
981
- * Update dependencies.
982
-
983
- ## v1.0.1 (2020-02-05)
984
-
985
- #### :house: Internal
986
- * Various fixes.
987
-
988
- ## v1.0.0 (2020-02-04)
989
-
990
- #### :tada: New Feature
991
- * Significant improvements to test structure organization, allowing to define all configurations using a project file.
992
- * Improvements to the script development flexibility:
993
- - Automation tests can be written using ES6.
994
- - Tests can hook into exposed `before` and `after` hooks for `test`, `suite`, `case`, `command` actions.
995
- * Improvements to Oxygen extendability:
996
- - Internal modules can be written using ES6 and can be developed in both synchronous and asynchronous (using `async/await` operators) manner.
997
- - Modules can contain submodules. E.g. `web.network.assertUrl`.
998
- - Added support for Service. Services are add-ons which can be developed for providing additional custom logic for tests.
999
- * Support for Applitools for visual UI testing.
1000
- * Support for native Windows applications (via WinApiDriver) automation - WinForms, WPF, UWP, Classic Win32.
1001
- * Support for writing tests using Cucumber.
1002
- * Support for environment variables.
1003
- * Project level Page Object support.
1004
- * Support for running multiple Suites as a part of a single test.
1005
- * Improved debugging support when using breakpoints in external files.
1006
- * Added `web.rightClick`.
1007
- * Added `win.rightClick`.
1008
- * Improvements to SauceLabs, LambdaTest, TestingBot integrations
1009
- * `pdf` methods accept optional argument for reversing string order (useful when working with RTL languages).
1010
-
1011
- #### :boom: Breaking Change
1012
- * `ox.*` is no longer available. `ox.modules.*` should be used instead. All available modules `web`, `mob`, etc are also exposed globally now and can be used directly.
1013
- * `return` is no longer supported for terminating user scripts.
1014
- * Suite configuration JSONs are no longer supported. Project level configuration files should be used instead.
1015
- * `web.network*` commands are now accessible via a submodule `web.network.*` and have different names. See documentation for more details.
1016
- * Oxygen will not produce any reports by default unless `--rf` switch is used.
1017
-
1018
- #### :beetle: Bug Fix
1019
- * `twilio` not producing proper error when no matching messages found.
1020
- * `web.network` not recording responses for redirected requests.
1021
- * `web.click` not working on IE under certain conditions.
1022
- * Debugger not entering into module code if module name is specified using wrong case.
1023
-
1024
- #### :nail_care: Polish
1025
- * Improved error handling. Errors now contain proper stacktraces and provide more details about where in user script the error has occurred.
1026
- * More errors from underlying frameworks are handled and processed.
1027
- * JUnit XML reports improved to include more details about test failures.
1028
- * `twilio` module performance improvements.
1029
- * Added JS injection fall-back for `web.doubleClick` when element is not clickable.
1030
-
1031
- #### :book: Documentation
1032
- * Documentation has been migrated to a new infrastructure providing better user experience. Documentation has been, as well, improved with more topics.
1033
-
1034
- #### :house: Internal
1035
- * Webdriverio updated to v5.18.6.
1036
- * Updated pre-bundled Chrome drivers.
1037
-
1038
- ## v1.0.0-beta.14 (2019-12-16)
1039
-
1040
- #### :tada: New Feature
1041
- * Take screenshots on `assert.*` command failures.
1042
-
1043
- ## v1.0.0-beta.13 (2019-12-15)
1044
-
1045
- #### :beetle: Bug Fix
1046
- * Generate proper results on child process crashes.
1047
-
1048
- ## v1.0.0-beta.12 (2019-12-15)
1049
-
1050
- #### :tada: New Feature
1051
- * Automatically set web context for mobile web tests.
1052
-
1053
- #### :house: Internal
1054
- * Improve debugger initialization.
1055
-
1056
- ## v1.0.0-beta.8 (2019-12-09)
1057
-
1058
- #### :house: Internal
1059
- * Disable devtools-service logging
1060
-
1061
- ## v1.0.0-beta.7 (2019-12-08)
1062
-
1063
- **Due a mishap which happened when publishing new version, version number has been increased to 1.0.0-beta.x.
1064
- This version number change doesn't reflect any actual changes in the stable branch of oxygen-cli.
1065
- Version numbers will normalize once the real 1.0.0 is released.**
1066
-
1067
- #### :nail_care: Polish
1068
- * Handle "Unable to create new service" init error.
1069
-
1070
- #### :house: Internal
1071
- * WebdriverIO@5.16.13.
1072
-
1073
- ## v0.52.3 (2019-11-26)
1074
-
1075
- #### :house: Internal
1076
- * Remove erroneously published folder.
1077
-
1078
- ## v0.52.2 (2019-11-26)
1079
-
1080
- #### :nail_care: Polish
1081
- * Handle "Failed to create session" init error in web tests.
1082
-
1083
- ## v0.52.1 (2019-11-26)
1084
-
1085
- #### :beetle: Bug Fix
1086
- * Fix timeout argument being ignored in `web.network*`.
1087
- * Fix failures in certain commands (regression from v0.52.0).
1088
-
1089
- #### :nail_care: Polish
1090
- * Handle "Failed to create session" init error.
1091
-
1092
- #### :house: Internal
1093
- * WebdriverIO@5.16.9.
1094
-
1095
- ## v0.52.0 (2019-11-20)
1096
-
1097
- #### :tada: New Feature
1098
- * Add `web.network*` commands for working with network requests in Chrome.
1099
-
1100
- #### :beetle: Bug Fix
1101
- * Fix `mob.sendKeys` to work with W3C drivers.
1102
-
1103
- #### :nail_care: Polish
1104
- * Process 'invalid selector' errors.
1105
-
1106
- #### :book: Documentation
1107
- * Fix `mob.swipeScreen` documentation.
1108
-
1109
- #### :house: Internal
1110
- * WebdriverIO@5.16.7
1111
- * Bump dependencies.
1112
-
1113
- ## v0.51.2 (2019-11-13)
1114
-
1115
- #### :nail_care: Polish
1116
- * Try scrolling the element into viewport before clicking it.
1117
-
1118
- #### :house: Internal
1119
- * Add support for variables inspection in debugger.
1120
-
1121
- ## v0.51.1 (2019-11-04)
1122
-
1123
- #### :house: Internal
1124
- * Fix network timings.
1125
-
1126
- ## v0.51.0 (2019-10-23)
1127
-
1128
- #### :tada: New Feature
1129
- * Add `web.findElement` and `web.findElements`.
1130
-
1131
- #### :boom: Breaking Change
1132
- * `mob.getCaps` renamed to `mob.getCapabilities`.
1133
-
1134
- #### :beetle: Bug Fix
1135
- * Number of issues with `mob.findElement` and `mob.findElements`.
1136
-
1137
- ## v0.50.2 (2019-10-16)
1138
-
1139
- #### :tada: New Feature
1140
- * Add support for setting HTTP headers in `http` module commands.
1141
-
1142
- ## v0.50.1 (2019-10-08)
1143
-
1144
- #### :beetle: Bug Fix
1145
- * Fixed invalid WDIO dependencies being pulled on install.
1146
-
1147
- ## v0.50.0 (2019-10-07)
1148
-
1149
- #### :tada: New Feature
1150
- * Add support for authentication details in Selenium and Appium HUB URLs.
1151
-
1152
- ## v0.49.0 (2019-10-04)
1153
-
1154
- #### :tada: New Feature
1155
- * Add `twilio.sendSms`.
1156
-
1157
- #### :beetle: Bug Fix
1158
- * Environment not being read from suite json definition.
1159
-
1160
- #### :nail_care: Polish
1161
- * Add handling for 'application is not installed on device' error.
1162
- * Handle ChromeDriver version mismatch errors for Appium 1.15+.
1163
- * Handle additional 'element not found' errors.
1164
-
1165
- #### :house: Internal
1166
- * Use reloadSession instead of manually deleting and creating new sessions.
1167
- * Bump dependencies.
1168
-
1169
- ## v0.48.7 (2019-09-29)
1170
-
1171
- #### :nail_care: Polish
1172
- * Produce proper error when trying to use `web.getBrowserLogs` on unsupported browsers.
1173
- * Produce proper error mobile os version mismatch.
1174
- * Produce proper error on ChromeDriver version mismatch during context switch.
1175
-
1176
- #### :house: Internal
1177
- * Remove Grunt dependency.
1178
-
1179
- ## v0.48.6 (2019-09-26)
1180
-
1181
- #### :house: Internal
1182
- * Fix HAR not working on Chrome 77 and higher.
1183
-
1184
- ## v0.48.5 (2019-09-25)
1185
-
1186
- #### :beetle: Bug Fix
1187
- * `web.getXMLPageSource` not working as expected.
1188
- * `web.setTimeout` and `mob.setTimeout` not setting the global timeout.
1189
-
1190
- ## v0.48.4 (2019-09-25)
1191
-
1192
- #### :nail_care: Polish
1193
- * Don't print WDIO warn level logs.
1194
- * Produce proper error if `web.fileBrowse` fails due to the element not being interactable.
1195
- * `web.makeVisible` will set `disabled` attribute to false.
1196
-
1197
- #### :house: Internal
1198
- * Update chrome-har dependency.
1199
-
1200
- ## v0.48.3 (2019-09-22)
1201
-
1202
- #### :beetle: Bug Fix
1203
- * Issue with wrong WDIO dependency versions being pulled on new installs.
1204
- * Fix handling of user specified Appium server URLs in `mob.init`.
1205
-
1206
- #### :nail_care: Polish
1207
- * Don't print WDIO info level logs.
1208
-
1209
- ## v0.48.2 (2019-09-21)
1210
-
1211
- #### :beetle: Bug Fix
1212
- * Fix handling of selenium and appium hub addresses.
1213
-
1214
- ## v0.48.1 (2019-09-19)
1215
-
1216
- #### :nail_care: Polish
1217
- * Improved error handling.
1218
-
1219
- ## v0.48.0 (2019-09-19)
1220
-
1221
- #### :tada: New Feature
1222
- * Support for Node.js 12.
1223
- * New web commands: `web.isSelected`.
1224
- * New mob commands: `mob.closeApp`, `mob.installApp`, `mob.removeApp`, `mob.launchApp`, `mob.resetApp`, `mob.getCurrentAcitivity`, `mob.getCurrentPackage`.
1225
- * New pdf commands: `pdf.count`.
1226
- * Optional `pageNum` argument for `pdf.assert` and `pdf.assertNot`.
1227
- * Optional `timeout` argument for all `mob` and `web` commands. Can be used to set timeouts per command.
1228
- * Optional `clickParent` argument for `web.clickHidden`.
1229
-
1230
- #### :boom: Breaking Change
1231
- * `mob.verifyTitle`, `mob.verifyTitle`, `mob.verifyValue` removed since those command worked exactly like their `assert*` counterparts.
1232
- * `mob.swipe` has been split into two separate commands: `mob.swipe` and `mob.swipeScreen`.
1233
- * `mob.hideKeyboard` accepts different arguments and supports more strategies.
1234
- * `mob.scrollToElement` accepts different arguments.
1235
- * `mob.setAutoWait` and `web.setAutoWait` removed.
1236
- * Optional `message` argument has been removed from relevant `mob` commands.
1237
-
1238
- #### :beetle: Bug Fix
1239
- * `web.makeVisible` will keep the original element dimensions if non 0.
1240
-
1241
- #### :nail_care: Polish
1242
- * Error handling has been significantly improved.
1243
-
1244
- #### :book: Documentation
1245
- * Various documentation fixes.
1246
-
1247
- #### :house: Internal
1248
- * Upgrade to WebDriverIO v5.
1249
- * Bump dependencies.
1250
-
1251
- ## v0.47.4 (2019-09-12)
1252
- * Fix parameter handling for CSVs produced by OS X Excel.
1253
-
1254
- ## v0.47.3 (2019-08-05)
1255
- * Internal fixes: Fix HAR fetching on ChromeDriver >= v75
1256
-
1257
- ## v0.47.2 (2019-07-28)
1258
- * Internal fixes.
1259
-
1260
- ## v0.47.1 (2019-07-28)
1261
- * Internal fixes.
1262
-
1263
- ## v0.47.0 (2019-07-26)
1264
- * Add `web.dragAndDrop`.
1265
- * Internal changes - fix breakpoint processing and make oxygen work with VS Code debugger.
1266
- * Bump dependencies.
1267
-
1268
- ## v0.46.6 (2019-07-19)
1269
- * Improve performance of HTML report generation.
1270
- * Bump dependencies.
1271
-
1272
- ## v0.46.5 (2019-07-17)
1273
- * Add support for adding breakpoints after the test has started.
1274
- * Bump dependencies.
1275
-
1276
- ## v0.46.4 (2019-07-14)
1277
- * Fix invalid breakpoint handling in debugger.
1278
-
1279
- ## v0.46.3 (2019-07-10)
1280
- * Fix number of issues with HTML reports.
1281
-
1282
- ## v0.46.2 (2019-07-09)
1283
- * Support external webdriverio options.
1284
- * Improve error handling for RuntimeError.
1285
-
1286
- ## v0.46.1 (2019-07-03)
1287
- * Fix `soap` module to work with HTTPS which uses self-signed certificates.
1288
- * Fix `http` module to work with HTTPS which uses self-signed certificates.
1289
- * Fix `pdf.assert` not working properly with certain words having spaces in them.
1290
-
1291
- ## v0.46.0 (2019-07-02)
1292
- * Add `mob.getAppiumLogs`.
1293
- * Add `mob.getDeviceLogs`.
1294
- * Add `mob.getDeviceTime`.
1295
- * Add `mob.setTimeout`.
1296
- * Add `web.getBrowserLogs`.
1297
- * Add `pdf` module.
1298
- * Remove dependency on Mono for Linux & OS X.
1299
-
1300
- ## v0.45.2 (2019-06-17)
1301
- * Internal fixes.
1302
-
1303
- ## v0.45.1 (2019-06-11)
1304
- * Move `web.sendKeyboardActions` functionality to `web.sendKeys`.
1305
-
1306
- ## v0.45.0 (2019-06-11)
1307
- * Add `web.sendKeyboardActions` (on behalf of Alexei Mikheev).
1308
- * Fix `mob.swipe` to throw proper error when element not found.
1309
- * Fix commands failing with cryptic error when passed null as a locator.
1310
- * Bump dependencies.
1311
-
1312
- ## v0.44.1 (2019-06-10)
1313
- * Fix CSV parameters parsing.
1314
- * Fix UNKOWN_ERROR being thrown for assertion errors.
1315
-
1316
- ## v0.44.0 (2019-05-29)
1317
- * Remove support for using ECMAScript modules from `require`.
1318
-
1319
- ## v0.43.0 (2019-05-27)
1320
- * Add `web.getTitle`.
1321
- * Unwrap the return value returned by `web.execute` and `mob.execute`.
1322
- * Internal fixes.
1323
-
1324
- ## v0.42.8 (2019-05-05)
1325
- * Remove browserName if both browserName and appPackage were specified.
1326
- * Override script specified caps for mob tests with context caps.
1327
-
1328
- ## v0.42.7 (2019-04-29)
1329
- * Fix --ro command line switch.
1330
-
1331
- ## v0.42.6 (2019-04-24)
1332
- * Better error message on invalid IE zoom level.
1333
- * Internal fixes.
1334
-
1335
- ## v0.42.4 (2019-04-16)
1336
- * Fix date values not being parsed correctly when reading a CSV.
1337
- * Bump dependencies
1338
-
1339
- ## v0.42.3 (2019-04-02)
1340
- * Fix encoding issue when reading CSVs without BOM.
1341
- * Bump dependencies
1342
-
1343
- ## v0.42.2 (2019-03-13)
1344
- * Fix `web.scrollToElement`.
1345
-
1346
- ## v0.42.1 (2019-03-12)
1347
- * Internal fixes.
1348
-
1349
- ## v0.42.0 (2019-02-25)
1350
- * Add `shell` module.
1351
-
1352
- ## v0.41.2 (2019-02-01)
1353
- * Fix possible crash in `web.click`.
1354
-
1355
- ## v0.41.1 (2019-01-30)
1356
- * Internal fixes.
1357
-
1358
- ## v0.41.0 (2019-01-29)
1359
- * Add `web.assertTextNotPresent`.
1360
- * Add timeout to `web.assertTextPresent`.
1361
- * Fix `mob.swipe` when used without locator.
1362
- * Generate proper oxygen error on element not found in `mob.waitForExist`.
1363
- * Fix documentation.
1364
- * Use dependencies only from npm repo.
1365
-
1366
- ## v0.40.0 (2019-01-15)
1367
- * Add `web.refresh`.
1368
- * Handle element not displayed errors from IE driver.
1369
- * Produce proper error when browserName is not specified for `web.init`.
1370
- * Fix documentation.
1371
- * Other internal fixes.
1372
-
1373
- ## v0.39.0 (2018-12-28)
1374
- * **[Breaking change]** `mob.selectFrame` behavior changed to match `web.selectFrame`.
1375
- * Fix documentation.
1376
- * Other internal fixes.
1377
-
1378
- ## v0.38.0 (2018-12-23)
1379
- * Allow to access Oxygen modules and context from external modules.
1380
- * Add ES6 support to the test script imported modules.
1381
- * Fix commented out parameters being reported as undefined.
1382
- * Other internal fixes.
1383
-
1384
- ## v0.37.0 (2018-12-20)
1385
- * Ignore delay for transaction commands.
1386
- * Fix `date.fromNow` documentation.
1387
- * Add authentication support for `soap`.
1388
-
1389
- ## v0.36.1 (2018-12-17)
1390
- * Fix error's line number not saved in step result.
1391
-
1392
- ## v0.36.0 (2018-12-11)
1393
- * Add `web.back`.
1394
- * Fix `mob.isVisible`.
1395
- * Better handling of error caused by lack of Mono installation on MacOS, when generating HTML report.
1396
-
1397
- ## v0.35.5 (2018-12-01)
1398
- * Fix invalid transaction name in reports in certain situations when executing multiple iterations.
1399
-
1400
- ## v0.35.4 (2018-11-28)
1401
- * User friendly error messages on invalid parameter files.
1402
-
1403
- ## v0.35.3 (2018-11-28)
1404
- * Don't try to trim non-string parameter values.
1405
- * Use js injection click fallback for non-intractable elements.
1406
-
1407
- ## v0.35.2 (2018-11-27)
1408
- * Remove extra whitespace characters from parameters loaded from xlsx.
1409
-
1410
- ## v0.35.1 (2018-11-26)
1411
- * Better error message when Android device is not found.
1412
- * Fix crash under rare circumstances.
1413
-
1414
- ## v0.35.0 (2018-11-23)
1415
- * **[Breaking change]** Rename `mob.isDisplayed` to `mob.isVisible`.
1416
- * Fix `mob.is*` behavior when element not found.
1417
- * Better error messages for Selenium and Appium init failures.
1418
- * Better error messages on text mismatch for `web.waitForText` and `web.waitForValue`.
1419
- * Fix test time being reported in utc instead of local time in reports.
1420
- * Documentation updates.
1421
-
1422
- ## v0.34.4 (2018-11-19)
1423
- * Fix debugger.
1424
-
1425
- ## v0.34.2 (2018-11-12)
1426
- * Bump dependencies (adds support Node 9 and 10)
1427
-
1428
- ## v0.34.1 (2018-11-06)
1429
- * Fix invalid error being reported under certain conditions.
1430
-
1431
- ## v0.34.0 (2018-11-06)
1432
- * Add `db.executeQuery`.
1433
- * Fix crash on Linux/OSX if odbc binaries are not installed.
1434
- * Fix incorrect error type returned in certain situations.
1435
- * Fix error line number not shown for certain errors.
1436
- * Bump webdriverio.
1437
-
1438
- ## v0.33.0 (2018-10-24)
1439
- * **[Breaking change]** Rename `web.waitForElementPresent` to `web.waitForExist`.
1440
- * **[Breaking change]** Rename `web.isElementPresent` to `web.isExist`.
1441
- * **[Breaking change]** Rename `web.isElementVisible` to `web.isVisible`.
1442
- * **[Breaking change]** Rename `web.assertElementPresent` to `web.assertExist`.
1443
- * **[Breaking change]** Rename `web.executeScript` to `web.execute`.
1444
- * **[Breaking change]** Rename `web.getPageSource` to `web.getSource`.
1445
- * **[Breaking change]** Rename `mob.waitForElement` to `mob.waitForExist`.
1446
- * **[Breaking change]** Rename `mob.setValue` to `mob.type`.
1447
- * **[Breaking change]** Remove empty string locator from `web.selectWindow`.
1448
- * **[Breaking change]** Change `web.selectFrame` behavior:
1449
- * Multiple locators can be passed as arguments now instead of separating the frame XPathes with
1450
- `';;'`
1451
- * `"relative=parent"` changed to "parent"
1452
- * `"relative=top"` changed to "top"
1453
- * `"index=x"` changed to x (passed as a number)
1454
- * **[Breaking change]** Add `mob.setAutoWait`.
1455
- * Add `web.setAutoWait`.
1456
- * Add X offset support in `web.scrollToElement`.
1457
- * Improved error handling for situations when invalid arguments are passed to methods.
1458
- * Fix documentation.
1459
- * Error code names changes:
1460
- * ASSERT -> ASSERT_ERROR
1461
- * VERIFY -> VERIFY_ERROR
1462
- * NO_SUCH_ELEMENT -> ELEMENT_NOT_FOUND
1463
- * NO_SUCH_FRAME -> FRAME_NOT_FOUND
1464
- * UNKNOWN_COMMAND -> UNKNOWN_COMMAND_ERROR
1465
- * NO_SUCH_WINDOW -> WINDOW_NOT_FOUND
1466
- * APPIUM_SERVER_UNREACHABLE -> APPIUM_UNREACHABLE_ERROR
1467
- * SELENIUM_SERVER_UNREACHABLE SELENIUM_UNREACHABLE_ERROR
1468
- * NOT_IMPLEMENTED -> NOT_IMPLEMENTED_ERROR
1469
- * DB_CONNECTION -> DB_CONNECTION_ERROR
1470
- * DB_QUERY -> DB_QUERY_ERROR
1471
- * SOAP -> SOAP_ERROR
1472
- * Do not try to invoke web.clickHidden from web.click when element not found.
1473
- * Fix hang when calling method on a uninitialized module.
1474
- * Fix hidden click fallback in `web.click`.
1475
- * Fix `web.type` not clearing the previous value.
1476
- * `web.selectWindow` will automatically wait for window to appear when using `title` locator.
1477
- * Add optional `notOlderThan` argument to `twilio.getLastSms`.
1478
- * Fixed `transaction` not working if specified before `init`.
1479
-
1480
- ## v0.32.0 (2018-08-09)
1481
- * Fix `web.isAlertPresent`.
1482
- * Add `mob.clickMultipleTimes`.
1483
- * Fix int handling in `assert.equal`
1484
- * Perform Javascript injection click if regular click fails in `web.click`
1485
- * Reimplemented `mob.clickLong` using a different method to support iOS 11.4.
1486
- * Fix bug with skipping second record in CSV file.
1487
- * Add `http.getResponseHeaders`.
1488
- * Fix hang in `twilio.getLastSms`.
1489
- * Add support for script arguments in `web.executeScript`.
1490
- * Improve logging.
1491
- * Drop `verify` module.
1492
- * Bump dependencies.
1493
-
1494
- ## v0.31.1 (2018-06-01)
1495
- * Fix `mob.getCaps` for suites.
1496
- * Bump default swipe speed for `mob.swipe` to 30.
1497
- * Fix `mob.execute`.
1498
- * Fix `email` module to read last email instead of the first.
1499
- * Bump dependencies.
1500
-
1501
- ## v0.31.0 (2018-05-16)
1502
- * Add `web.getUrl` command.
1503
- * Change `web.assertText` and `web.assertValue` commands behavior to pass text or value assertions of hidden elements.
1504
-
1505
- ## v0.30.2 (2018-05-16)
1506
- * Revised handling of 'require' calls from Oxygen script.
1507
-
1508
- ## v0.30.1 (2018-05-16)
1509
- * Various `twilio` module fixes.
1510
- * Various `email` module fixes.
1511
-
1512
- ## v0.30.0 (2018-05-15)
1513
- * Add support for referencing global node modules with `require`.
1514
- * Add `require.allow` option to control if `require` usage is allowed within the script.
1515
- * Add `opt.autoReport` flag to test script - allow to turn on/off auto-reporting steps.
1516
- * Add preliminary implementation of `twilio` module.
1517
- * Add preliminary implementation of `email` module.
1518
-
1519
- ## v0.29.0 (2018-04-22)
1520
- * Add `mob.getValue`.
1521
- * Fix `mob.getText`.
1522
- * Allow to use `require` with global modules inside test scripts.
1523
- * Use window size instead of viewport in `web.setWindowSize`
1524
- * Add `customStep` method.
1525
- * Add support for `continueOnError` option.
1526
- * Fix `mob` module re-initialization when `reopenSession` is specified.
1527
-
1528
- ## v0.28.0 (2018-03-16)
1529
- * Add --delay switch for delaying command execution.
1530
- * Add `web.waitForNotExist`.
1531
- * Throw NO_SUCH_ELEMENT from `web.waitForVisible` if element doesn't exist.
1532
- * Deprecate `web.waitForElementPresent`.
1533
- * Throw LOCATOR_MATCHES_MULTIPLE_ELEMENTS from `web.gettAttribute` and `web.getText` if the locator matches multiple elements.
1534
- * Add `mob.selectFrame`.
1535
- * Fix context and init method capabilities merging.
1536
- * Bump dependencies.
1537
-
1538
- ## v0.27.0 (2018-02-27)
1539
- * Add `mob.clickLong`.
1540
- * Don't check for element visibility in `web.select`.
1541
-
1542
- ## v0.26.1 (2018-02-14)
1543
- * Fix parameters reading.
1544
-
1545
- ## v0.26.0 (2018-02-08)
1546
- * Add `mob.enableNetwork`.
1547
- * Fix `mob.swipe` and `mob.dragAndDrop` docs.
1548
- * Bump dependencies.
1549
-
1550
- ## v0.25.0 (2018-01-21)
1551
- * Remove '-m' switch.
1552
- * Add support for accessibility id locators on Android.
1553
- * [Breaking change] Use ~ for accessibility id locators on iOS instead of "id=" prefix.
1554
- * Make driver instance accessible from user level scripts.
1555
- * Add support for external debuggers.
1556
-
1557
- ## v0.24.1 (2017-12-25)
1558
- * Emit iteration-end event.
1559
-
1560
- ## v0.24.0 (2017-12-25)
1561
- * Add `mob.alertAccept`.
1562
- * Fix accessibility id locator strategy for native iOS applications.
1563
- * Documentation fixes.
1564
-
1565
- ## v0.23.0 (2017-12-16)
1566
- * [Breaking change] Require explicit web module initialization with `web.init`.
1567
- * Add `mob.unlockPattern`.
1568
- * A more reliable `web.waitFor*` implementation.
1569
- * Add preliminary support for JUnit reports.
1570
- * Fix suites execution stopping on the first fatal error.
1571
- * Fix status code handling in `http` module.
1572
- * Add support for native android id locators without package prefix.
1573
- * Trim and collapse white space for `web.getAttribute`, `getCssValue`, `getText` return values.
1574
- * Collapse whitespace in patterns.
1575
- * Add preliminary `date` module implementation.
1576
- * webdriverio@4.9.9
1577
-
1578
- ## v0.22.0 (2017-11-11)
1579
- * Fix time formatting in reports.
1580
- * Fix reliability issues with `web.waitForWindow`.
1581
- * Add `mob.smsClickLink`.
1582
- * Change `mob.getSmsText` to `mob.smsGetText`.
1583
-
1584
- ## v0.21.0 (2017-10-30)
1585
- * Add `serial.write` and `serial.getBuffer`.
1586
- * `mob.getSmsText` now uses android-smspopup application (see documentation) instead of SMSPopup from Play Store and accepts optional `wait` argument.
1587
- * Add `mob.isExist`.
1588
- * Fix regex pattern matching not performing the matching globally.
1589
-
1590
- ## v0.20.0 (2017-10-23)
1591
- * Fixed certain errors being ignored.
1592
- * Add `serial` module.
1593
- * Add `http` module.
1594
- * Add `mob.getLcoation`
1595
- * Fixed empty pattern matching in `web` module.
1596
- * Fixed `web.selectWindow` and `web.waitForWindow` failing if there is no currently active window.
1597
- * Fixed `name` locator handling in `web` module.
1598
-
1599
- ## v0.19.6 (2017-10-17)
1600
- * Return attribute only for the first matching element in web.getAttribute.
1601
- * Fix glob pattern matching in multi line text.
1602
-
1603
- ## v0.19.5 (2017-10-16)
1604
- * Return boolean instead of string from mob.is* commands.
1605
-
1606
- ## v0.19.4 (2017-10-15)
1607
- * Fix mob.scrollIntoElement
1608
-
1609
- ## v0.19.2 (2017-10-12)
1610
- * Use local time instead of UTC in reports.
1611
-
1612
- ## v0.19.0 (2017-10-11)
1613
- * Add mob.isCheckable, mob.isChecked, mob.isClickable, mob.isSelected
1614
- * mob.scroll command renamed to mob.dragAndDrop
1615
- * Fix web.type failing if passed value is not a string.
1616
- * Fix handling of parameters with underscore in the name.
1617
- * Update dependencies.
1618
-
1619
- ## v0.18.2 (2017-10-01)
1620
- * Fix error types generated on waitForExist and and waitForVisible.
1621
-
1622
- ## v0.18.0 (2017-09-29)
1623
- * `web`, `soap`, and `db` modules, previously implemented in C#, have been reimplemented in Node.js. This provides a number of significant benefits - faster test initialization, removes the need for version matching between Oxygen and Selenium servers, solves a number of issues on Linux/OS X related to Mono version incompatibility, allows using `soap` and `db` along with the `mob` module, and provides more flexibility in module's development.
1624
-
1625
- Note that .NET/Mono is still required if you wish to generate HTML or PDF reports.
1626
- In addition, `db` module now requires `unixODBC` libraries to be installed. See README. If `unixODBC` is not available the module won't be installed.
1627
-
1628
- Module specific changes are as follows:
1629
-
1630
- __`soap`__
1631
- *Removed*
1632
- `get12` - Removed in favor of the new `soap.get` method.
1633
- *Changed*
1634
- `get` - Signature changed to accept WSDL URL, method name, and any complex objects as service arguments. Unlike prior implementation this method will return object instead of a JSON serialization.
1635
- *Added*
1636
- `describe`
1637
-
1638
- __`web`__
1639
- *Removed*
1640
- `setBaseUrl`, `quit`, `getXMLPageSourceAsJSON`
1641
- *Changed*
1642
- [`waitForWindow`, `waitForValue`, `waitForText`, `waitForNotValuec`, `waitForNotValue`, `waitForElementPresent`,
1643
- `assertValue`, `assertElementPresent`, `assertAlert`, `assertSelectedValue`, `assertSelectedLabel`] - Now accept timeout as and optional argument.
1644
- `type` - Support for `${KEY_}` key codes has been removed in favor of Unicode characters.
1645
- `point` - Accepts two optional arguments xoffset and yoffset.
1646
- `getWindowHandles` - Return type changed to String[].
1647
- `getElementCount` - Accepts any of supported locators in addition to XPath.
1648
- `getElementCount` - Return type changed to Object.
1649
-
1650
- __`eyes`__
1651
- Temporary removed pending rewrite.
1652
-
1653
-
1654
- * Updated dependencies.
1655
-
1656
- ## v0.17.0 (2017-09-17)
1657
- * Fix iteration collapsing not working in HTML reports when having more than one iteration.
1658
- * Improve HTML reports.
1659
- * Add PDF reporter (--rf=pdf switch).
1660
- * Fix oxygen bin not launching on OSX and Linux.
1661
- * Fix random parameters mode.
1662
-
1663
- ## v0.16.0 (2017-09-02)
1664
- * Add web.getCssValue command.
1665
-
1666
- ## v0.15.0 (2017-08-21)
1667
- * Add mob.tap command.
1668
-
1669
- ## v0.14.1 (2017-08-14)
1670
- * Make log.* commands generate proper output in html reports.
1671
- * Remove log.fatal command.
1672
-
1673
- ## v0.14.0 (2017-08-05)
1674
- * Additional mobile locators: desc-contains, text-contains, scrollable, link-contains.
1675
- * Fix not being able to use transactions when running web tests with multiple iterations.
1676
- * Add ability to run mobile tests against remote hubs.
1677
-
1678
- ## v0.13.3 (2017-07-31)
1679
- * Fix number of issues with Excel reports generation.
1680
- * Fix report generation when --pm=all option is used.
1681
- * Don't generate unnecessary XML report when using the --rf=html option.
1682
-
1683
- ## v0.13.2 (2017-07-28)
1684
- * Fix global installation.
1685
-
1686
- ## v0.13.1 (2017-07-28)
1687
- * Initial release published to npm registry.
1
+ # CHANGELOG
2
+
3
+ ## v1.37.8 (2025-03-03)
4
+
5
+ #### :beetle: Bug Fix
6
+ * Do not try to fetch BrowserStack URL for non BrowserStack tests.
7
+
8
+ ## v1.37.7 (2025-02-18)
9
+
10
+ #### :nail_care: Polish
11
+ * Make bstack options copying more generic.
12
+
13
+ ## v1.37.6 (2025-01-08)
14
+
15
+ #### :beetle: Bug Fix
16
+ * Fix pass through of the `bstack:localIdentifier` capability.
17
+
18
+ ## v1.37.5 (2025-01-07)
19
+
20
+ #### :beetle: Bug Fix
21
+ * Fix test status not being set for BrowserStack tests.
22
+
23
+ #### :house: Internal
24
+ * Store BrowserStack result url in test result.
25
+
26
+ ## v1.37.4 (2024-12-24)
27
+
28
+ #### :beetle: Bug Fix
29
+ * Fix suite execution not working properly on BrowserStack.
30
+
31
+ ## v1.37.3 (2024-12-19)
32
+
33
+ #### :beetle: Bug Fix
34
+ * Properly pass BrowserStack capabilities.
35
+
36
+ ## v1.37.2 (2024-12-04)
37
+
38
+ #### :beetle: Bug Fix
39
+ * Produce proper error when trying to add non existent file with `ox.addAttachment`.
40
+
41
+ #### :house: Internal
42
+ * Handle re-run delay and re-run count.
43
+
44
+ ## v1.37.1 (2024-09-12)
45
+
46
+ #### :house: Internal
47
+ * Revert odbc.
48
+
49
+ ## v1.37.0 (2024-09-12)
50
+
51
+ #### :tada: New Feature
52
+ * Add `soap.authClientSSL` and `soap.authClientSSLPFX`.
53
+
54
+ #### :house: Internal
55
+ * Bump odbc.
56
+
57
+ ## v1.36.0 (2024-08-19)
58
+
59
+ #### :beetle: Bug Fix
60
+ * Fix crash when wdio element command fails from within a user script.
61
+ * Fix crash when re-running failed tests.
62
+
63
+ ## v1.35.2 (2024-07-30)
64
+
65
+ #### :beetle: Bug Fix
66
+ * Fix invalid transaction hierarchy in results when using hooks.
67
+
68
+ ## v1.35.0 (2024-06-18)
69
+
70
+ #### :tada: New Feature
71
+ * Add support for sending emails with `email` module.
72
+
73
+ ## v1.34.1 (2024-06-10)
74
+
75
+ #### :house: Internal
76
+ * Downgrade wdio for node 12 compatibility in IDE.
77
+
78
+ ## v1.34.0 (2024-06-07)
79
+
80
+ #### :tada: New Feature
81
+ * Add NTLM authentication support to `http` module.
82
+
83
+ ## v1.33.6 (2024-06-06)
84
+
85
+ #### :house: Internal
86
+ * Limit transaction name to 512 characters.
87
+
88
+ ## v1.33.5 (2024-05-29)
89
+
90
+ #### :beetle: Bug Fix
91
+ * Fix `web.waitForAngular` when running inside an iframe.
92
+
93
+ ## v1.33.4 (2024-05-10)
94
+
95
+ #### :beetle: Bug Fix
96
+ * Fix incorrect processing of parameters.
97
+ * Better handle situations when taking screenshots fails.
98
+
99
+ #### :house: Internal
100
+ * Bump webdriverio dependencies.
101
+
102
+ ## v1.33.2 (2024-05-24)
103
+
104
+ #### :house: Internal
105
+ * Downgrade chrome-har version for node 12 compatibility.
106
+
107
+ ## v1.33.1 (2024-03-20)
108
+
109
+ #### :beetle: Bug Fix
110
+ * Properly handle non-string message argument in `assert.fail` and `assert.pass`.
111
+
112
+ ## v1.33.0 (2024-03-11)
113
+
114
+ #### :tada: New Feature
115
+ * Add soft-wait mode for `web.waitForAngular`.
116
+ * Add support for reporting request/response related information in HTTP module.
117
+
118
+ #### :beetle: Bug Fix
119
+ * Fix timeout processing in `web.waitForAngular`.
120
+
121
+ #### :beetle: Bug Fix
122
+ * Handle internal `recordVideo` flag in web module.
123
+ * Bump dependencies.
124
+
125
+ ## v1.32.1 (2024-03-01)
126
+
127
+ #### :nail_care: Polish
128
+ * Process "javascript error" errors.
129
+ * Process "still not clickable after" errors.
130
+
131
+ #### :house: Internal
132
+ * Bump dependencies.
133
+
134
+ ## v1.32.0 (2023-12-15)
135
+
136
+ #### :tada: New Feature
137
+ * Add `web.mockClearAll` and `web.mockRestoreAll`.
138
+
139
+ ## v1.31.0 (2023-12-08)
140
+
141
+ #### :tada: New Feature
142
+ * Allow to capture and attach test video to test results if running against a Selenoid hub.
143
+ * Add `web.mock` method allowing to mock network responses.
144
+
145
+ #### :nail_care: Polish
146
+ * Minor improvements to API documentation.
147
+
148
+ #### :beetle: Bug Fix
149
+ * Mark transaction as warning if one of steps has warning status.
150
+
151
+ ## v1.30.3 (2023-09-01)
152
+
153
+ #### :beetle: Bug Fix
154
+ * Fix broken `--rf` switch.
155
+
156
+ #### :nail_care: Polish
157
+ * Do not wrap strings logged with `log.*` commands in double quotes.
158
+
159
+ ## v1.30.2 (2023-08-31)
160
+
161
+ #### :beetle: Bug Fix
162
+ * Fix parallel case execution inside suites.
163
+
164
+ ## v1.30.1 (2023-08-29)
165
+
166
+ #### :beetle: Bug Fix
167
+ * Fix step's Warning status not being properly processed.
168
+ * Improve the way test result status for suites with Skipped and Warning statuses is determined.
169
+
170
+ ## v1.30.0 (2023-08-15)
171
+
172
+ #### :tada: New Feature
173
+ * Add `utils.transaction` command.
174
+
175
+ ## v1.29.1 (2023-07-26)
176
+
177
+ #### :beetle: Bug Fix
178
+ * Invalid chrome-remote-interface require.
179
+
180
+ ## v1.29.0 (2023-07-26)
181
+
182
+ #### :tada: New Feature
183
+ * Add `web.verify*` commands.
184
+
185
+ #### :house: Internal
186
+ * Bump dependencies.
187
+
188
+ ## v1.28.0 (2023-07-14)
189
+
190
+ #### :tada: New Feature
191
+ * Add support for parallel execution of cases inside a suite.
192
+ * Expose `attributes` object to Oxygen scripts.
193
+
194
+ #### :beetle: Bug Fix
195
+ * `clearDeviceLogsOnStart` capability not working properly.
196
+ * Make sure to set test status to warning if one of the step's status is warning.
197
+ * Generate HTML report by default when running tests from Oxygen CLI.
198
+ * EventEmitter memory leak.
199
+ * Do not crash on invalid arguments to `transaction` commands.
200
+
201
+ #### :house: Internal
202
+ * Bump dependencies.
203
+
204
+ ## v1.27.5 (2023-04-14)
205
+
206
+ #### :tada: New Feature
207
+ * Allow "web" module to run Appium-based tests.
208
+
209
+ #### :house: Internal
210
+ * Bump dependencies.
211
+
212
+ ## v1.27.4 (2023-02-23)
213
+
214
+ #### :tada: New Feature
215
+ * Add types to Oxygen module to allow auto completion in popular IDEs.
216
+
217
+ #### :beetle: Bug Fix
218
+ * Issue with multi iterations debugging.
219
+ * Fix issue with re-run failed tests mechanism.
220
+
221
+ #### :house: Internal
222
+ * Bump dependencies.
223
+
224
+ ## v1.27.2 (2023-02-09)
225
+
226
+ #### :beetle: Bug Fix
227
+ * Browser windows were terminated instead of remaining open on failed tests in Oxygen IDE.
228
+
229
+ #### :house: Internal
230
+ * Bump dependencies.
231
+
232
+ ## v1.27.0 (2023-01-04)
233
+
234
+ #### :beetle: Bug Fix
235
+ * Restore node 12 compatibility.
236
+
237
+ #### :house: Internal
238
+ * Bump dependencies.
239
+
240
+ ## v1.26.0 (2022-12-28)
241
+
242
+ #### :tada: New Feature
243
+ * Add `Add web.network.blockUrls`.
244
+ * Add `ox.addAttribute` function for adding custom test attributes to the test result.
245
+
246
+ ## v1.25.0 (2022-12-22)
247
+
248
+ #### :beetle: Bug Fix
249
+ * Scripts with deeply nested `init` methods failed to execute in some situations when part of a Suite.
250
+
251
+ ## v1.24.9 (2022-12-09)
252
+
253
+ #### :house: Internal
254
+ * Downgrade mailparser to support node 12.
255
+
256
+ ## v1.24.8 (2022-12-09)
257
+
258
+ #### :beetle: Bug Fix
259
+ * Session not being dispossed for web tests.
260
+
261
+ #### :house: Internal
262
+ * Bump dependencies.
263
+
264
+ ## v1.24.7 (2022-12-08)
265
+
266
+ #### :beetle: Bug Fix
267
+ * Fix assertions not working in `http` module for non 2xx/3xx return codes.
268
+ * Fix `soap` module not working.
269
+ * Throw `APPIUM_SESSION_TIMEOUT` instead of `SELENIUM_SESSION_TIMEOUT` for mobile tests.
270
+
271
+ #### :house: Internal
272
+ * Bump dependencies.
273
+
274
+ ## v1.24.6 (2022-11-04)
275
+
276
+ #### :house: Internal
277
+ * Bump dependencies.
278
+
279
+ ## v1.24.5 (2022-09-22)
280
+
281
+ #### :house: Internal
282
+ * Bump dependencies.
283
+
284
+ ## v1.24.4 (2022-08-24)
285
+
286
+ #### :beetle: Bug Fix
287
+ * Fix value parsing in `web.waitFor*` commands (by Francois Wauquier).
288
+ * Fix issue with Applitools when API key is passed via "init" method.
289
+
290
+ #### :house: Internal
291
+ * Expose oxygen internal variables to debugger.
292
+ * Bump dependencies.
293
+
294
+ ## v1.24.3 (2022-08-12)
295
+
296
+ #### :beetle: Bug Fix
297
+ * Additional fixes for MODULE_NOT_INITIALIZED error when running multiple tests which reference an external script containing `*.init` commands.
298
+ * Do not include browserName when bundleId is specified in mobile capabilities.
299
+
300
+ ## v1.24.2 (2022-08-05)
301
+
302
+ #### :tada: New Feature
303
+ * Add `web.isInteractable`.
304
+
305
+ #### :beetle: Bug Fix
306
+ * Fixed MODULE_NOT_INITIALIZED error when running multiple tests which reference an external script containing `*.init` commands.
307
+
308
+ #### :house: Internal
309
+ * Bump dependencies.
310
+
311
+ ## v1.24.1 (2022-07-29)
312
+
313
+ #### :beetle: Bug Fix
314
+ * Closing bracket indentation in `log.*` output.
315
+ * Handing of objects with circular references in `log.*` commands.
316
+ * `web.assertTextPresent` and `web.assertTextNotPresent` not properly restoring timeouts on exit.
317
+
318
+ #### :house: Internal
319
+ * Bump dependencies.
320
+
321
+ ## v1.24.0 (2022-07-19)
322
+
323
+ #### :tada: New Feature
324
+ * Add `twilio.getLastSentApiSms` (by Akiva Brookler).
325
+
326
+ #### :house: Internal
327
+ * Bump dependencies.
328
+
329
+ ## v1.23.2 (2022-06-17)
330
+
331
+ #### :beetle: Bug Fix
332
+ * Fix test execution on Perfecto Mobile.
333
+
334
+ ## v1.23.0 (2022-06-15)
335
+
336
+ #### :tada: New Feature
337
+ * Add `db.callProcedure`.
338
+
339
+ #### :beetle: Bug Fix
340
+ * Fix test execution on Firefox.
341
+ * `http`: fix issue with "Cannot read property 'includes' of undefined" error when content-type header is missing in the response.
342
+
343
+ #### :house: Internal
344
+ * Bump dependencies.
345
+
346
+ ## v1.22.1 (2022-04-28)
347
+
348
+ #### :beetle: Bug Fix
349
+ * Fix test execution on Firefox.
350
+ * Convert body to object in http.get when nessasry.
351
+ * Catch and ignore device logs retrieval issue, if cloud provider doesn't support this operation.
352
+
353
+ ## v1.22.0 (2022-01-14)
354
+
355
+ #### :tada: New Feature
356
+ * Add `utils.xmlToJson`.
357
+
358
+ #### :beetle: Bug Fix
359
+ * Invalid line number printed for certain errors.
360
+ * Number of issues with BrowserStack integration.
361
+ * Number of issues with `shell` module.
362
+
363
+ #### :nail_care: Polish
364
+ * Documentation improvements.
365
+ * Increase `http` module's default response timeout from 30 to 60 seconds.
366
+
367
+ #### :house: Internal
368
+ * Bump dependencies.
369
+
370
+ ## v1.21.0 (2022-01-17)
371
+
372
+ #### :boom: Breaking Change
373
+ * Previously deprecated `web.selectWindow` with no arguments has been removed.
374
+
375
+ #### :tada: New Feature
376
+ * `email` module: add support for base64 encoded body and option to download email attachments.
377
+ * Add `utils.dnsResolve`.
378
+ * Add `utils.readXlsx`.
379
+ * Add `web.maximizeWindow`, `web.minimizeWindow`, `web.fullscreenWindow`.
380
+ * Add `soap.getLastResponseHeaders`.
381
+ * `soap.get`: allow passing HTTP request headers.
382
+
383
+ #### :beetle: Bug Fix
384
+ * Fix `mob.sendKeys` argument validation.
385
+ * `web.setTimeout` not having any effect on `web.open`.
386
+ * `web.waitForNotExist` not working as expected.
387
+ * Fix memory leak in `db` module.
388
+ * `assert.equal` not working correctly when input strings consisted of digits.
389
+
390
+ #### :nail_care: Polish
391
+ * Documentation improvements.
392
+
393
+ #### :house: Internal
394
+ * Refactor everything for more asynchronicity.
395
+ * Use `got` instead of the no longer supported `request` for `http` module.
396
+ * Bump other dependencies.
397
+
398
+ ## v1.20.2 (2021-09-05)
399
+
400
+ #### :beetle: Bug Fix
401
+ * Fix key usage in `utils.encrypt`.
402
+
403
+ ## v1.20.1 (2021-08-06)
404
+
405
+ #### :beetle: Bug Fix
406
+ * Issue with test execution on Perfecto Mobile.
407
+
408
+ #### :nail_care: Polish
409
+ * Improve error handling in `utils.decrypt`.
410
+
411
+ ## v1.20.0 (2021-08-04)
412
+
413
+ #### :boom: Breaking Change
414
+ * `web.isChecked` has been deprecated and will be removed in future versions. Use `web.isSelected` instead.
415
+
416
+ #### :tada: New Feature
417
+ * Support for NodeJS 14.
418
+ * Added `utils.readCsv` and `utils.writeCsv`.
419
+ * Allow filtering by source number in `twilio.getLastSms`.
420
+ * Added `utils.encrypt` and `utils.decrypt`.
421
+ * Added `web.waitForAngular` and `web.setAutoWaitForAngular`.
422
+ * Added `mob.selectWindow`, `mob.select`.
423
+ * Added `http.patch`.
424
+
425
+ #### :beetle: Bug Fix
426
+ * `web.isSelected` not working in certain situations.
427
+ * Index repeating transactions to prevent duplicate transaction names in results.
428
+ * Failure taking mobile screenshots in certain situations.
429
+
430
+ #### :nail_care: Polish
431
+ * Documentation improvements.
432
+ * Notify when `mob` command is being used in wrong mobile context.
433
+ * Improve error handling in `http` module.
434
+
435
+ #### :house: Internal
436
+ * Upgrade to WDIO v7 and bump other dependencies.
437
+
438
+ ## v1.19.1 (2021-06-01)
439
+
440
+ #### :beetle: Bug Fix
441
+ * `http` and `utils` module not working when using multiple iteration.
442
+
443
+ #### :nail_care: Polish
444
+ * Do not invoke module disposal mechanism on dead sessions (which previously led to test finalization taking a few minutes in certain situations).
445
+ * Miscellaneous internal cleanups.
446
+
447
+ ## v1.19.0 (2021-05-25)
448
+
449
+ #### :boom: Breaking Change
450
+ * `http` module will no longer throw on erroneous HTTP status codes, and will return the request/response details instead.
451
+
452
+ #### :tada: New Feature
453
+ * Add `web.network.waitForNotUrl`.
454
+ * Return `responseBody` and `requestPostData` in requests recorded with `web.network`.
455
+ * Add `web.newWindow`.
456
+
457
+ #### :beetle: Bug Fix
458
+ * PDF and XML reporter not working.
459
+ * `pdf.count` ignoring strings which appear multiple times on the same line.
460
+ * Ignore "ignored" steps in Cucumber.
461
+ * Make status argument in `web.dispose` and `mob.dispose` optional.
462
+ * Issue with converting Chai assertions to Oxygen errors.
463
+ * Various other fixes.
464
+
465
+ #### :nail_care: Polish
466
+ * Better error handling in debugger.
467
+ * Better error handling when parsing JSON/CSV/XLSX parameter files.
468
+ * Process "invalid selector" errors.
469
+ * Improved duration formatting in test reports.
470
+ * Add validation for timeout arguments and notify the user in case of invalid values.
471
+ * Removed redundant module disposal.
472
+
473
+ #### :house: Internal
474
+ * Bump dependencies.
475
+ * Support for REPL.
476
+
477
+ ## v1.18.0 (2021-03-24)
478
+
479
+ #### :tada: New Feature
480
+ * Add `utils.pause`.
481
+
482
+ #### :beetle: Bug Fix
483
+ * `web.click`, `web.rightClick`, `web.doubleClick` not working on IE < 11.
484
+
485
+ #### :nail_care: Polish
486
+ * Print more details on `http` module failures.
487
+ * Documentation updates.
488
+
489
+ ## v1.17.0 (2021-03-22)
490
+
491
+ #### :boom: Breaking Change
492
+ * `http` module has been rewritten to support more features. As a result some methods, their arguments, and return types were substantially changed. See API documentation for more details.
493
+
494
+ #### :tada: New Feature
495
+ * Add `soap.setProxy`.
496
+ * Add `autoDispose` setting to `oxygen.conf` to control whether to dispose modules automatically between test iterations.
497
+
498
+ #### :beetle: Bug Fix
499
+ * `web.click` and `web.clickHidden` not working on IE < 11.
500
+ * `web.fileBrowse` not working.
501
+ * Issue with hooks in Cucumber tests.
502
+ * Various other fixes.
503
+
504
+ #### :nail_care: Polish
505
+ * Process "element not interactable" errors.
506
+
507
+ #### :house: Internal
508
+ * Bump dependencies.
509
+
510
+ ## v1.16.1 (2021-02-15)
511
+
512
+ #### :beetle: Bug Fix
513
+ * Issue with module disposal.
514
+
515
+ ## v1.16.0 (2021-02-09)
516
+
517
+ #### :tada: New Feature
518
+ * New command `mob.longPressKeyCode`.
519
+ * New command `web.rightClickActions`
520
+ * Node module `proxy`.
521
+
522
+ #### :beetle: Bug Fix
523
+ * Error parsing in `db` module.
524
+ * Number of issues with session disposal.
525
+
526
+ ## v1.15.0 (2021-01-16)
527
+
528
+ #### :tada: New Feature
529
+ * Added `*.waitForInteractable`.
530
+
531
+ #### :beetle: Bug Fix
532
+ * `web.switchToWindow` crashes when one of the windows closes mid-way.
533
+ * `web.switchToWindow` crashing in certain situations.
534
+ * Memory leak during test disposal.
535
+ * Various issues with `mob.scrollIntoElement`, `mob.swipe`, `mob.swipeElement`, `mob.swipeScreen`.
536
+ * Script errors not being processed.
537
+ * Handling of missing locator arguments in `mob` module.
538
+
539
+ #### :house: Internal
540
+ * Pass console output from child process to external libraries.
541
+ * Number of internal fixes.
542
+ * Bump dependencies.
543
+
544
+ ## v1.14.3 (2020-11-27)
545
+
546
+ #### :beetle: Bug Fix
547
+ * Fix ChromeDriver cleanup on Linux.
548
+
549
+ #### :house: Internal
550
+ * Bump dependencies.
551
+
552
+ ## v1.14.2 (2020-11-20)
553
+
554
+ #### :beetle: Bug Fix
555
+ * Regression in `web.clickHidden`.
556
+ * Invalid filename printed in error details for certain errors.
557
+
558
+ ## v1.14.1 (2020-11-16)
559
+
560
+ #### :tada: New Feature
561
+ * Automatic retry on `STALE_ELEMENT_REFERENCE`.
562
+
563
+ #### :beetle: Bug Fix
564
+ * Fixed `*.findElements` to throw errors instead of returning an empty array for anything else except `ELEMENT_NOT_FOUND`.
565
+
566
+ #### :nail_care: Polish
567
+ * Process "module not found" errors.
568
+ * Process "window not found" errors.
569
+ * Process "The element with selector * you trying to pass into the execute method wasn't found" errors.
570
+
571
+ ## v1.14.0 (2020-11-08)
572
+
573
+ #### :boom: Breaking Change
574
+ * `*.findElements` will return an empty array instead of failing when no elements are found.
575
+
576
+ #### :beetle: Bug Fix
577
+ * `win.selectWindow` not working with `title=` prefix.
578
+ * Test name not being set for tests executed on PerfectoMobile provider.
579
+
580
+ ## v1.13.7 (2020-11-03)
581
+
582
+ #### :beetle: Bug Fix
583
+ * Fixed issue with stopping `mob` and `win` tests.
584
+ * Fixed issue with re-running failed tests.
585
+
586
+ #### :house: Internal
587
+ * Bump dependencies.
588
+
589
+ ## v1.13.6 (2020-10-27)
590
+
591
+ #### :beetle: Bug Fix
592
+ * `onBeforeCase` and `onAfterCase` support in Cucumber tests.
593
+ * Fixed number of issues with Edge when using cloud providers.
594
+
595
+ #### :house: Internal
596
+ * Collect logs and HAR for Cucumber tests.
597
+
598
+ ## v1.13.5 (2020-10-19)
599
+
600
+ #### :beetle: Bug Fix
601
+ * Fixed `web.sendKeys` throwing an error if currently active window is closed during the command execution.
602
+ * Fixed `web.click` and `web.clickHidden` to work in IE < 9 compatibility mode.
603
+ * RegExp arguments not properly displayed in reports.
604
+
605
+ #### :house: Internal
606
+ * Bump dependencies.
607
+
608
+ ## v1.13.4 (2020-10-13)
609
+
610
+ #### :beetle: Bug Fix
611
+ * Fixed maximum call stack size exceeded issue (#102).
612
+
613
+ ## v1.13.3 (2020-10-12)
614
+
615
+ #### :beetle: Bug Fix
616
+ * Add option to enable SNI in `email` module. This fixes issue with connection to Gmail.
617
+
618
+ ## v1.13.2 (2020-10-08)
619
+
620
+ #### :house: Internal
621
+ * Fixed parameter handling when using re-run option.
622
+
623
+ ## v1.13.1 (2020-10-08)
624
+
625
+ #### :house: Internal
626
+ * Added internal option for disabling screenshots on failure.
627
+
628
+ ## v1.13.0 (2020-10-08)
629
+
630
+ #### :tada: New Feature
631
+ * Support for `beforeCommand` and `afterCommand` hooks.
632
+
633
+ #### :boom: Breaking Change
634
+ * `web.dispose` and `mob.dispose` now expects a mandatory status argument.
635
+
636
+ #### :beetle: Bug Fix
637
+ * `web.waitForVisible` was ignoring the timeout argument.
638
+
639
+ #### :nail_care: Polish
640
+ * Made CSV parsing errors more user friendly.
641
+ * Print more detailed failure information for Cucumber tests.
642
+
643
+ #### :house: Internal
644
+ * Added BrowserStack integration.
645
+ * Fixed issue with SauceLab session disposal.
646
+ * Fixed domContentLoadedEvent and loadEvent calculation.
647
+ * Added internal option to re-run failed tests.
648
+ * Updated WDIO to v6.6.0.
649
+
650
+ ## v1.12.0 (2020-09-27)
651
+
652
+ #### :boom: Breaking Change
653
+ * Execute each Case using new browser session when executing Suites.
654
+
655
+ #### :beetle: Bug Fix
656
+ * Test initialization on Edge + BrowserStack.
657
+ * `web.getXMLPageSource` to work on Edge.
658
+
659
+ #### :nail_care: Polish
660
+ * Fail silently if click fails due to js injection error.
661
+ * Fallback to js click when ChromeDriver fails due to element being located in Shadow DOM.
662
+
663
+ #### :house: Internal
664
+ * Fixed an issue with performance timings not being recorded.
665
+
666
+ ## v1.11.0 (2020-09-21)
667
+
668
+ #### :tada: New Feature
669
+ * Add `mob.assertAlert`.
670
+ * Add `mob.getBrowserLogs`.
671
+
672
+ #### :beetle: Bug Fix
673
+ * `timeout` argument being ignored in some commands.
674
+ * Number of issues in `alert` related commands.
675
+
676
+ #### :book: Documentation
677
+ * Add missing accessibility id locator to win docs.
678
+
679
+ #### :nail_care: Polish
680
+ * Make CSV parsing errors more user-friendly.
681
+ * Increase default 3000ms `waitFor*` timeout to 5000ms.
682
+ * Produce proper error if `web.pointJS` is not supported on IE.
683
+ * Throw a more detailed error when `web.clickHidden` is not supported on IE.
684
+
685
+ #### :house: Internal
686
+ * Fix performance stats not being fetched correctly.
687
+ * Fix logs retrieval.
688
+ * Code refactoring.
689
+ * Bump dependencies.
690
+
691
+ ## v1.10.0 (2020-09-13)
692
+
693
+ #### :boom: Breaking Change
694
+ * Minimal supported node.js version 10.18.1.
695
+
696
+ #### :beetle: Bug Fix
697
+ * No error details shown for oxygen.po/conf/env.js errors.
698
+ * Filename not shown for certain script errors.
699
+ * Issue with `*.network` module re-initialization.
700
+
701
+ #### :nail_care: Polish
702
+ * Make transaction's duration an aggregate of all the underlying command durations.
703
+
704
+ ## v1.9.0 (2020-09-09)
705
+
706
+ #### :boom: Breaking Change
707
+ * `soap.describe` returns object instead of a serialized representation.
708
+
709
+ #### :tada: New Feature
710
+ * Add `web.isChecked`.
711
+
712
+ #### :beetle: Bug Fix
713
+ * `web.getHtml` wasn't available.
714
+ * Execution on MicrosoftEdge.
715
+ * width and height wasn't adjusted properly in `web.makeVisible`.
716
+ * Memory leak when using multiple iterations.
717
+ * Shared `vars` object for passing data between tests not working.
718
+
719
+ #### :nail_care: Polish
720
+ * Add error handling for network errors on Chrome 85.
721
+
722
+ #### :house: Internal
723
+ * Fixed breakpoints not working with UNC paths.
724
+ * Fixed mobile logs not being collected.
725
+
726
+ ## v1.8.2 (2020-08-30)
727
+
728
+ #### :house: Internal
729
+ * Downgrade WDIO due to a regression.
730
+
731
+ ## v1.8.1 (2020-08-30)
732
+
733
+ #### :house: Internal
734
+ * Simplify debugger's path to url conversion.
735
+ * Do not close browser on failed tests (when running through IDE).
736
+ * Bump dependencies.
737
+
738
+ ## v1.8.0 (2020-08-25)
739
+
740
+ #### :tada: New Feature
741
+ * Add `web.getHTML`.
742
+
743
+ #### :nail_care: Polish
744
+ * Throw proper error on `mob.click` in webview context if element is not interactable.
745
+
746
+ #### :house: Internal
747
+ * Fix filename handling in debugger.
748
+ * Bump WDIO to v6.4.2.
749
+
750
+ ## v1.7.2 (2020-08-23)
751
+
752
+ #### :beetle: Bug Fix
753
+ * `ID` locators not working in `win` module.
754
+ * `web.click` working in asynchronous mode instead of synchronous.
755
+
756
+ #### :book: Documentation
757
+ * Fixed `win`, `web`, and `mob` modules formatting.
758
+
759
+ #### :house: Internal
760
+ * Bump and cleanup dependencies.
761
+
762
+ ## v1.7.1 (2020-08-22)
763
+
764
+ #### :beetle: Bug Fix
765
+ * Regression with `services` and `modules` settings in `oxygen.conf` being ignored.
766
+
767
+ ## v1.7.0 (2020-08-20)
768
+
769
+ #### :tada: New Feature
770
+ * Support for BrowserStack provider.
771
+ * Take screenshots for all available windows including the titles on errors.
772
+ * Improved performance during test initialization.
773
+
774
+ #### :beetle: Bug Fix
775
+ * Fixed `web.makeVisible` to work with elements with 0 height/width and `!important` style applied.
776
+ * `web.assertTextPresent` and `web.assertTextNotPresent` not producing proper errors.
777
+ * Invalid oxygen.conf/po/env.js files not being handled properly.
778
+ * Fixed npm updates check during `npm root -g` invocation not being disabled.
779
+ * Produce proper errors when `web.network` is not initialized.
780
+ * Fix tests getting stuck sometimes on low level WDIO errors.
781
+ * `require` not working from within `oxygen.conf/po/env.js` files.
782
+
783
+ #### :nail_care: Polish
784
+ * Improved reports generated by cli to specify browser/device name next to suite details.
785
+ * Handle additional WebDriver errors.
786
+
787
+ #### :book: Documentation
788
+ * `email` module fixes.
789
+
790
+ #### :house: Internal
791
+ * Fixed number of issues with results, environments, and breakpoints processing.
792
+ * WebDriverIO updated to v6.4.0.
793
+ * Bump dependencies.
794
+
795
+ ## v1.6.1 (2020-07-03)
796
+
797
+ #### :beetle: Bug Fix
798
+ * Fix npm root -g mechanizm for macos
799
+
800
+ ## v1.6.0 (2020-06-25)
801
+
802
+ #### :tada: New Feature
803
+ * Support for Node.js 12.
804
+ * `web.getWindowSize` for returning browser window dimensions.
805
+ * `assert.pass` for arbitrary stopping test execution.
806
+
807
+ #### :beetle: Bug Fix
808
+ * Browser session not being disposed in some cases.
809
+ * `web.assertTextPresent` and `web.assertTextNotPresent` not working correctly.
810
+ * `web.point` not working correctly.
811
+ * `win.isSelected` not working correctly.
812
+ * Environment definition not being read from oxygen.conf.js.
813
+ * Exit code returned by Oxygen not reflecting the test status.
814
+
815
+ #### :nail_care: Polish
816
+ * `mob.swipeElement` no longer requires `speed` argument.
817
+ * Improved `mob.swipe` behavior.
818
+ * Improved `web.assertSelectedLabel` and `web.assertSelectedValue` to accept optional argument specifying whether to wait for element's visibility.
819
+ * `web.getText` no longer requires element to be visible.
820
+
821
+ #### :book: Documentation
822
+ * Various documentation fixes.
823
+
824
+ ## v1.5.1 (2020-06-17)
825
+
826
+ #### :beetle: Bug Fix
827
+ * Regression related to execution of Cucumber projects.
828
+ * Regression related to execution of single test scripts.
829
+
830
+ #### :nail_care: Polish
831
+ * Improve command argument serialization.
832
+
833
+ ## v1.5.0 (2020-06-15)
834
+
835
+ #### :tada: New Feature
836
+ * Added support for defining suites in separate files.
837
+
838
+ #### :beetle: Bug Fix
839
+ * Re-enabled `network` module.
840
+
841
+ ## v1.4.1 (2020-06-09)
842
+
843
+ #### :tada: New Feature
844
+ * Added support for finding windows by their URL to `web.selectWindow` and `web.waitForWindow`.
845
+ Option to select/waitFor last opened windows has been deprecated and will be removed in the future.
846
+
847
+ #### :beetle: Bug Fix
848
+ * `mob.swipeElement` not working due to a typo.
849
+
850
+ #### :book: Documentation
851
+ * Various documentation fixes.
852
+
853
+ #### :house: Internal
854
+ * WebDriverIO updated to v5.23.0.
855
+
856
+ ## v1.4.0 (2020-06-07)
857
+
858
+ #### :tada: New Feature
859
+ * `mob.getTitle`
860
+ * `mob.getUrl`
861
+
862
+ #### :beetle: Bug Fix
863
+ * `web.type` on Firefox not triggering some events attached to the element.
864
+ * Browser not being closed on test completion when multiple tabs or windows are opened.
865
+ * `web.pointJS` not working on Internet Explorer.
866
+ * Incorrect command duration in HTML reports.
867
+
868
+ #### :nail_care: Polish
869
+ * Improve `web.makeVisible` to adjust visibility of parent elements as well.
870
+ * Handle 'Element not clickable at point' errors produced by IE.
871
+ * Handle 'element click intercepted' errors.
872
+ * Handle 'No active session with ID' errors.
873
+
874
+ #### :book: Documentation
875
+ * Improve documentation for `web.scrollIntoView`, `mob.getAlertText`, `*.getDriver`.
876
+
877
+ #### :house: Internal
878
+ * Initial support for PerfectoMobile provider.
879
+ * Increase `connectionRetryTimeout` and decrease `connectionRetryCount` in order to better handle slowly loading pages.
880
+ * Bump dependencies.
881
+
882
+ ## v1.3.0 (2020-05-10)
883
+
884
+ #### :tada: New Feature
885
+ * Add `assert.contain`.
886
+
887
+ #### :beetle: Bug Fix
888
+ * Log entries generated by Cucumber runner.
889
+ * Missing "location" in some thrown errors.
890
+
891
+ ## v1.2.5 (2020-05-04)
892
+
893
+ #### :beetle: Bug Fix
894
+ * Number of issues to related to module initialization.
895
+ * Cucumber runner not populating logs data.
896
+
897
+ ## v1.2.0 (2020-04-13)
898
+
899
+ #### :tada: New Feature
900
+ * Add `web.pointJS`.
901
+
902
+ #### :beetle: Bug Fix
903
+ * `--p=json` switch not working.
904
+ * Number of issues related to running tests on LambdaTest cloud provider.
905
+ * Relative paths in `pdf.assertNot` and `pdf.count`.
906
+
907
+ #### :nail_care: Polish
908
+ * Argument validation for `*.type` and `*.open` commands.
909
+ * Process 'Failed to create session' errors.
910
+
911
+ #### :book: Documentation
912
+ * Fix `web.deleteCookies` documentation.
913
+
914
+ #### :house: Internal
915
+ * WebDriverIO updated to v5.22.1.
916
+ * Improvements to browser disposal, debugger support, and SauceLabs provider support.
917
+
918
+ ## v1.1.3 (2020-03-15)
919
+
920
+ #### :beetle: Bug Fix
921
+ * Debug logs were not added to JSON results.
922
+
923
+ #### :nail_care: Polish
924
+ * Properly process 'invalid url' errors.
925
+
926
+ #### :house: Internal
927
+ * Update dependencies.
928
+
929
+ ## v1.1.2 (2020-03-06)
930
+
931
+ #### :house: Internal
932
+ * Fix process disposal.
933
+
934
+ ## v1.1.1 (2020-02-29)
935
+
936
+ #### :nail_care: Polish
937
+ * Properly process 'invalid css selector' errors.
938
+
939
+ #### :house: Internal
940
+ * Remove duplicate dependency.
941
+
942
+ ## v1.1.0 (2020-02-27)
943
+
944
+ #### :boom: Breaking Change
945
+ * `log.*` will automatically serialize the value if it's a complex object. Using `log.info(JSON.stringify(obj))` is no longer required.
946
+ * Minimum required version of Node.js has been raised to v10.14. Although Oxygen will work in part on older versions, anything below 10.14 is no longer officially supported.
947
+
948
+ #### :beetle: Bug Fix
949
+ * `log.*` not working with non-string objects.
950
+ * Parameters not loaded correctly from CSV if header contains spaces.
951
+ * Error handling in `web.assertAlert`, `web.alertAccept`, `web.alertDismiss` commands.
952
+ * Processing of ChomeDriver version mismatch errors.
953
+ * Generate HTML reports by default even if `--rf` switch is not specified.
954
+ * Regression with `assert` commands no longer taking screenshot for web and mobile tests.
955
+
956
+ #### :house: Internal
957
+ * Update dependencies.
958
+ * Various other small fixes & improvements.
959
+
960
+ ## v1.0.3 (2020-02-13)
961
+
962
+ #### :beetle: Bug Fix
963
+ * Stopping test not working reliably.
964
+ * Loading custom globally installed modules not working with `require`.
965
+ * Confusing error message when required file is not found.
966
+
967
+ ## v1.0.2 (2020-02-12)
968
+
969
+ #### :beetle: Bug Fix
970
+ * `--server` switch not working with mobile tests.
971
+ * `--ro` switch not working.
972
+ * `id` locator in web tests not working if it contains illegal characters.
973
+ * Test doesn't run if empty parameters file is used.
974
+
975
+ #### :nail_care: Polish
976
+ * Update help screen.
977
+ * Properly process 'Specified URL is not valid' errors.
978
+ * Properly process 'invalid xpath' errors for IE.
979
+
980
+ #### :house: Internal
981
+ * Update dependencies.
982
+
983
+ ## v1.0.1 (2020-02-05)
984
+
985
+ #### :house: Internal
986
+ * Various fixes.
987
+
988
+ ## v1.0.0 (2020-02-04)
989
+
990
+ #### :tada: New Feature
991
+ * Significant improvements to test structure organization, allowing to define all configurations using a project file.
992
+ * Improvements to the script development flexibility:
993
+ - Automation tests can be written using ES6.
994
+ - Tests can hook into exposed `before` and `after` hooks for `test`, `suite`, `case`, `command` actions.
995
+ * Improvements to Oxygen extendability:
996
+ - Internal modules can be written using ES6 and can be developed in both synchronous and asynchronous (using `async/await` operators) manner.
997
+ - Modules can contain submodules. E.g. `web.network.assertUrl`.
998
+ - Added support for Service. Services are add-ons which can be developed for providing additional custom logic for tests.
999
+ * Support for Applitools for visual UI testing.
1000
+ * Support for native Windows applications (via WinApiDriver) automation - WinForms, WPF, UWP, Classic Win32.
1001
+ * Support for writing tests using Cucumber.
1002
+ * Support for environment variables.
1003
+ * Project level Page Object support.
1004
+ * Support for running multiple Suites as a part of a single test.
1005
+ * Improved debugging support when using breakpoints in external files.
1006
+ * Added `web.rightClick`.
1007
+ * Added `win.rightClick`.
1008
+ * Improvements to SauceLabs, LambdaTest, TestingBot integrations
1009
+ * `pdf` methods accept optional argument for reversing string order (useful when working with RTL languages).
1010
+
1011
+ #### :boom: Breaking Change
1012
+ * `ox.*` is no longer available. `ox.modules.*` should be used instead. All available modules `web`, `mob`, etc are also exposed globally now and can be used directly.
1013
+ * `return` is no longer supported for terminating user scripts.
1014
+ * Suite configuration JSONs are no longer supported. Project level configuration files should be used instead.
1015
+ * `web.network*` commands are now accessible via a submodule `web.network.*` and have different names. See documentation for more details.
1016
+ * Oxygen will not produce any reports by default unless `--rf` switch is used.
1017
+
1018
+ #### :beetle: Bug Fix
1019
+ * `twilio` not producing proper error when no matching messages found.
1020
+ * `web.network` not recording responses for redirected requests.
1021
+ * `web.click` not working on IE under certain conditions.
1022
+ * Debugger not entering into module code if module name is specified using wrong case.
1023
+
1024
+ #### :nail_care: Polish
1025
+ * Improved error handling. Errors now contain proper stacktraces and provide more details about where in user script the error has occurred.
1026
+ * More errors from underlying frameworks are handled and processed.
1027
+ * JUnit XML reports improved to include more details about test failures.
1028
+ * `twilio` module performance improvements.
1029
+ * Added JS injection fall-back for `web.doubleClick` when element is not clickable.
1030
+
1031
+ #### :book: Documentation
1032
+ * Documentation has been migrated to a new infrastructure providing better user experience. Documentation has been, as well, improved with more topics.
1033
+
1034
+ #### :house: Internal
1035
+ * Webdriverio updated to v5.18.6.
1036
+ * Updated pre-bundled Chrome drivers.
1037
+
1038
+ ## v1.0.0-beta.14 (2019-12-16)
1039
+
1040
+ #### :tada: New Feature
1041
+ * Take screenshots on `assert.*` command failures.
1042
+
1043
+ ## v1.0.0-beta.13 (2019-12-15)
1044
+
1045
+ #### :beetle: Bug Fix
1046
+ * Generate proper results on child process crashes.
1047
+
1048
+ ## v1.0.0-beta.12 (2019-12-15)
1049
+
1050
+ #### :tada: New Feature
1051
+ * Automatically set web context for mobile web tests.
1052
+
1053
+ #### :house: Internal
1054
+ * Improve debugger initialization.
1055
+
1056
+ ## v1.0.0-beta.8 (2019-12-09)
1057
+
1058
+ #### :house: Internal
1059
+ * Disable devtools-service logging
1060
+
1061
+ ## v1.0.0-beta.7 (2019-12-08)
1062
+
1063
+ **Due a mishap which happened when publishing new version, version number has been increased to 1.0.0-beta.x.
1064
+ This version number change doesn't reflect any actual changes in the stable branch of oxygen-cli.
1065
+ Version numbers will normalize once the real 1.0.0 is released.**
1066
+
1067
+ #### :nail_care: Polish
1068
+ * Handle "Unable to create new service" init error.
1069
+
1070
+ #### :house: Internal
1071
+ * WebdriverIO@5.16.13.
1072
+
1073
+ ## v0.52.3 (2019-11-26)
1074
+
1075
+ #### :house: Internal
1076
+ * Remove erroneously published folder.
1077
+
1078
+ ## v0.52.2 (2019-11-26)
1079
+
1080
+ #### :nail_care: Polish
1081
+ * Handle "Failed to create session" init error in web tests.
1082
+
1083
+ ## v0.52.1 (2019-11-26)
1084
+
1085
+ #### :beetle: Bug Fix
1086
+ * Fix timeout argument being ignored in `web.network*`.
1087
+ * Fix failures in certain commands (regression from v0.52.0).
1088
+
1089
+ #### :nail_care: Polish
1090
+ * Handle "Failed to create session" init error.
1091
+
1092
+ #### :house: Internal
1093
+ * WebdriverIO@5.16.9.
1094
+
1095
+ ## v0.52.0 (2019-11-20)
1096
+
1097
+ #### :tada: New Feature
1098
+ * Add `web.network*` commands for working with network requests in Chrome.
1099
+
1100
+ #### :beetle: Bug Fix
1101
+ * Fix `mob.sendKeys` to work with W3C drivers.
1102
+
1103
+ #### :nail_care: Polish
1104
+ * Process 'invalid selector' errors.
1105
+
1106
+ #### :book: Documentation
1107
+ * Fix `mob.swipeScreen` documentation.
1108
+
1109
+ #### :house: Internal
1110
+ * WebdriverIO@5.16.7
1111
+ * Bump dependencies.
1112
+
1113
+ ## v0.51.2 (2019-11-13)
1114
+
1115
+ #### :nail_care: Polish
1116
+ * Try scrolling the element into viewport before clicking it.
1117
+
1118
+ #### :house: Internal
1119
+ * Add support for variables inspection in debugger.
1120
+
1121
+ ## v0.51.1 (2019-11-04)
1122
+
1123
+ #### :house: Internal
1124
+ * Fix network timings.
1125
+
1126
+ ## v0.51.0 (2019-10-23)
1127
+
1128
+ #### :tada: New Feature
1129
+ * Add `web.findElement` and `web.findElements`.
1130
+
1131
+ #### :boom: Breaking Change
1132
+ * `mob.getCaps` renamed to `mob.getCapabilities`.
1133
+
1134
+ #### :beetle: Bug Fix
1135
+ * Number of issues with `mob.findElement` and `mob.findElements`.
1136
+
1137
+ ## v0.50.2 (2019-10-16)
1138
+
1139
+ #### :tada: New Feature
1140
+ * Add support for setting HTTP headers in `http` module commands.
1141
+
1142
+ ## v0.50.1 (2019-10-08)
1143
+
1144
+ #### :beetle: Bug Fix
1145
+ * Fixed invalid WDIO dependencies being pulled on install.
1146
+
1147
+ ## v0.50.0 (2019-10-07)
1148
+
1149
+ #### :tada: New Feature
1150
+ * Add support for authentication details in Selenium and Appium HUB URLs.
1151
+
1152
+ ## v0.49.0 (2019-10-04)
1153
+
1154
+ #### :tada: New Feature
1155
+ * Add `twilio.sendSms`.
1156
+
1157
+ #### :beetle: Bug Fix
1158
+ * Environment not being read from suite json definition.
1159
+
1160
+ #### :nail_care: Polish
1161
+ * Add handling for 'application is not installed on device' error.
1162
+ * Handle ChromeDriver version mismatch errors for Appium 1.15+.
1163
+ * Handle additional 'element not found' errors.
1164
+
1165
+ #### :house: Internal
1166
+ * Use reloadSession instead of manually deleting and creating new sessions.
1167
+ * Bump dependencies.
1168
+
1169
+ ## v0.48.7 (2019-09-29)
1170
+
1171
+ #### :nail_care: Polish
1172
+ * Produce proper error when trying to use `web.getBrowserLogs` on unsupported browsers.
1173
+ * Produce proper error mobile os version mismatch.
1174
+ * Produce proper error on ChromeDriver version mismatch during context switch.
1175
+
1176
+ #### :house: Internal
1177
+ * Remove Grunt dependency.
1178
+
1179
+ ## v0.48.6 (2019-09-26)
1180
+
1181
+ #### :house: Internal
1182
+ * Fix HAR not working on Chrome 77 and higher.
1183
+
1184
+ ## v0.48.5 (2019-09-25)
1185
+
1186
+ #### :beetle: Bug Fix
1187
+ * `web.getXMLPageSource` not working as expected.
1188
+ * `web.setTimeout` and `mob.setTimeout` not setting the global timeout.
1189
+
1190
+ ## v0.48.4 (2019-09-25)
1191
+
1192
+ #### :nail_care: Polish
1193
+ * Don't print WDIO warn level logs.
1194
+ * Produce proper error if `web.fileBrowse` fails due to the element not being interactable.
1195
+ * `web.makeVisible` will set `disabled` attribute to false.
1196
+
1197
+ #### :house: Internal
1198
+ * Update chrome-har dependency.
1199
+
1200
+ ## v0.48.3 (2019-09-22)
1201
+
1202
+ #### :beetle: Bug Fix
1203
+ * Issue with wrong WDIO dependency versions being pulled on new installs.
1204
+ * Fix handling of user specified Appium server URLs in `mob.init`.
1205
+
1206
+ #### :nail_care: Polish
1207
+ * Don't print WDIO info level logs.
1208
+
1209
+ ## v0.48.2 (2019-09-21)
1210
+
1211
+ #### :beetle: Bug Fix
1212
+ * Fix handling of selenium and appium hub addresses.
1213
+
1214
+ ## v0.48.1 (2019-09-19)
1215
+
1216
+ #### :nail_care: Polish
1217
+ * Improved error handling.
1218
+
1219
+ ## v0.48.0 (2019-09-19)
1220
+
1221
+ #### :tada: New Feature
1222
+ * Support for Node.js 12.
1223
+ * New web commands: `web.isSelected`.
1224
+ * New mob commands: `mob.closeApp`, `mob.installApp`, `mob.removeApp`, `mob.launchApp`, `mob.resetApp`, `mob.getCurrentAcitivity`, `mob.getCurrentPackage`.
1225
+ * New pdf commands: `pdf.count`.
1226
+ * Optional `pageNum` argument for `pdf.assert` and `pdf.assertNot`.
1227
+ * Optional `timeout` argument for all `mob` and `web` commands. Can be used to set timeouts per command.
1228
+ * Optional `clickParent` argument for `web.clickHidden`.
1229
+
1230
+ #### :boom: Breaking Change
1231
+ * `mob.verifyTitle`, `mob.verifyTitle`, `mob.verifyValue` removed since those command worked exactly like their `assert*` counterparts.
1232
+ * `mob.swipe` has been split into two separate commands: `mob.swipe` and `mob.swipeScreen`.
1233
+ * `mob.hideKeyboard` accepts different arguments and supports more strategies.
1234
+ * `mob.scrollToElement` accepts different arguments.
1235
+ * `mob.setAutoWait` and `web.setAutoWait` removed.
1236
+ * Optional `message` argument has been removed from relevant `mob` commands.
1237
+
1238
+ #### :beetle: Bug Fix
1239
+ * `web.makeVisible` will keep the original element dimensions if non 0.
1240
+
1241
+ #### :nail_care: Polish
1242
+ * Error handling has been significantly improved.
1243
+
1244
+ #### :book: Documentation
1245
+ * Various documentation fixes.
1246
+
1247
+ #### :house: Internal
1248
+ * Upgrade to WebDriverIO v5.
1249
+ * Bump dependencies.
1250
+
1251
+ ## v0.47.4 (2019-09-12)
1252
+ * Fix parameter handling for CSVs produced by OS X Excel.
1253
+
1254
+ ## v0.47.3 (2019-08-05)
1255
+ * Internal fixes: Fix HAR fetching on ChromeDriver >= v75
1256
+
1257
+ ## v0.47.2 (2019-07-28)
1258
+ * Internal fixes.
1259
+
1260
+ ## v0.47.1 (2019-07-28)
1261
+ * Internal fixes.
1262
+
1263
+ ## v0.47.0 (2019-07-26)
1264
+ * Add `web.dragAndDrop`.
1265
+ * Internal changes - fix breakpoint processing and make oxygen work with VS Code debugger.
1266
+ * Bump dependencies.
1267
+
1268
+ ## v0.46.6 (2019-07-19)
1269
+ * Improve performance of HTML report generation.
1270
+ * Bump dependencies.
1271
+
1272
+ ## v0.46.5 (2019-07-17)
1273
+ * Add support for adding breakpoints after the test has started.
1274
+ * Bump dependencies.
1275
+
1276
+ ## v0.46.4 (2019-07-14)
1277
+ * Fix invalid breakpoint handling in debugger.
1278
+
1279
+ ## v0.46.3 (2019-07-10)
1280
+ * Fix number of issues with HTML reports.
1281
+
1282
+ ## v0.46.2 (2019-07-09)
1283
+ * Support external webdriverio options.
1284
+ * Improve error handling for RuntimeError.
1285
+
1286
+ ## v0.46.1 (2019-07-03)
1287
+ * Fix `soap` module to work with HTTPS which uses self-signed certificates.
1288
+ * Fix `http` module to work with HTTPS which uses self-signed certificates.
1289
+ * Fix `pdf.assert` not working properly with certain words having spaces in them.
1290
+
1291
+ ## v0.46.0 (2019-07-02)
1292
+ * Add `mob.getAppiumLogs`.
1293
+ * Add `mob.getDeviceLogs`.
1294
+ * Add `mob.getDeviceTime`.
1295
+ * Add `mob.setTimeout`.
1296
+ * Add `web.getBrowserLogs`.
1297
+ * Add `pdf` module.
1298
+ * Remove dependency on Mono for Linux & OS X.
1299
+
1300
+ ## v0.45.2 (2019-06-17)
1301
+ * Internal fixes.
1302
+
1303
+ ## v0.45.1 (2019-06-11)
1304
+ * Move `web.sendKeyboardActions` functionality to `web.sendKeys`.
1305
+
1306
+ ## v0.45.0 (2019-06-11)
1307
+ * Add `web.sendKeyboardActions` (on behalf of Alexei Mikheev).
1308
+ * Fix `mob.swipe` to throw proper error when element not found.
1309
+ * Fix commands failing with cryptic error when passed null as a locator.
1310
+ * Bump dependencies.
1311
+
1312
+ ## v0.44.1 (2019-06-10)
1313
+ * Fix CSV parameters parsing.
1314
+ * Fix UNKOWN_ERROR being thrown for assertion errors.
1315
+
1316
+ ## v0.44.0 (2019-05-29)
1317
+ * Remove support for using ECMAScript modules from `require`.
1318
+
1319
+ ## v0.43.0 (2019-05-27)
1320
+ * Add `web.getTitle`.
1321
+ * Unwrap the return value returned by `web.execute` and `mob.execute`.
1322
+ * Internal fixes.
1323
+
1324
+ ## v0.42.8 (2019-05-05)
1325
+ * Remove browserName if both browserName and appPackage were specified.
1326
+ * Override script specified caps for mob tests with context caps.
1327
+
1328
+ ## v0.42.7 (2019-04-29)
1329
+ * Fix --ro command line switch.
1330
+
1331
+ ## v0.42.6 (2019-04-24)
1332
+ * Better error message on invalid IE zoom level.
1333
+ * Internal fixes.
1334
+
1335
+ ## v0.42.4 (2019-04-16)
1336
+ * Fix date values not being parsed correctly when reading a CSV.
1337
+ * Bump dependencies
1338
+
1339
+ ## v0.42.3 (2019-04-02)
1340
+ * Fix encoding issue when reading CSVs without BOM.
1341
+ * Bump dependencies
1342
+
1343
+ ## v0.42.2 (2019-03-13)
1344
+ * Fix `web.scrollToElement`.
1345
+
1346
+ ## v0.42.1 (2019-03-12)
1347
+ * Internal fixes.
1348
+
1349
+ ## v0.42.0 (2019-02-25)
1350
+ * Add `shell` module.
1351
+
1352
+ ## v0.41.2 (2019-02-01)
1353
+ * Fix possible crash in `web.click`.
1354
+
1355
+ ## v0.41.1 (2019-01-30)
1356
+ * Internal fixes.
1357
+
1358
+ ## v0.41.0 (2019-01-29)
1359
+ * Add `web.assertTextNotPresent`.
1360
+ * Add timeout to `web.assertTextPresent`.
1361
+ * Fix `mob.swipe` when used without locator.
1362
+ * Generate proper oxygen error on element not found in `mob.waitForExist`.
1363
+ * Fix documentation.
1364
+ * Use dependencies only from npm repo.
1365
+
1366
+ ## v0.40.0 (2019-01-15)
1367
+ * Add `web.refresh`.
1368
+ * Handle element not displayed errors from IE driver.
1369
+ * Produce proper error when browserName is not specified for `web.init`.
1370
+ * Fix documentation.
1371
+ * Other internal fixes.
1372
+
1373
+ ## v0.39.0 (2018-12-28)
1374
+ * **[Breaking change]** `mob.selectFrame` behavior changed to match `web.selectFrame`.
1375
+ * Fix documentation.
1376
+ * Other internal fixes.
1377
+
1378
+ ## v0.38.0 (2018-12-23)
1379
+ * Allow to access Oxygen modules and context from external modules.
1380
+ * Add ES6 support to the test script imported modules.
1381
+ * Fix commented out parameters being reported as undefined.
1382
+ * Other internal fixes.
1383
+
1384
+ ## v0.37.0 (2018-12-20)
1385
+ * Ignore delay for transaction commands.
1386
+ * Fix `date.fromNow` documentation.
1387
+ * Add authentication support for `soap`.
1388
+
1389
+ ## v0.36.1 (2018-12-17)
1390
+ * Fix error's line number not saved in step result.
1391
+
1392
+ ## v0.36.0 (2018-12-11)
1393
+ * Add `web.back`.
1394
+ * Fix `mob.isVisible`.
1395
+ * Better handling of error caused by lack of Mono installation on MacOS, when generating HTML report.
1396
+
1397
+ ## v0.35.5 (2018-12-01)
1398
+ * Fix invalid transaction name in reports in certain situations when executing multiple iterations.
1399
+
1400
+ ## v0.35.4 (2018-11-28)
1401
+ * User friendly error messages on invalid parameter files.
1402
+
1403
+ ## v0.35.3 (2018-11-28)
1404
+ * Don't try to trim non-string parameter values.
1405
+ * Use js injection click fallback for non-intractable elements.
1406
+
1407
+ ## v0.35.2 (2018-11-27)
1408
+ * Remove extra whitespace characters from parameters loaded from xlsx.
1409
+
1410
+ ## v0.35.1 (2018-11-26)
1411
+ * Better error message when Android device is not found.
1412
+ * Fix crash under rare circumstances.
1413
+
1414
+ ## v0.35.0 (2018-11-23)
1415
+ * **[Breaking change]** Rename `mob.isDisplayed` to `mob.isVisible`.
1416
+ * Fix `mob.is*` behavior when element not found.
1417
+ * Better error messages for Selenium and Appium init failures.
1418
+ * Better error messages on text mismatch for `web.waitForText` and `web.waitForValue`.
1419
+ * Fix test time being reported in utc instead of local time in reports.
1420
+ * Documentation updates.
1421
+
1422
+ ## v0.34.4 (2018-11-19)
1423
+ * Fix debugger.
1424
+
1425
+ ## v0.34.2 (2018-11-12)
1426
+ * Bump dependencies (adds support Node 9 and 10)
1427
+
1428
+ ## v0.34.1 (2018-11-06)
1429
+ * Fix invalid error being reported under certain conditions.
1430
+
1431
+ ## v0.34.0 (2018-11-06)
1432
+ * Add `db.executeQuery`.
1433
+ * Fix crash on Linux/OSX if odbc binaries are not installed.
1434
+ * Fix incorrect error type returned in certain situations.
1435
+ * Fix error line number not shown for certain errors.
1436
+ * Bump webdriverio.
1437
+
1438
+ ## v0.33.0 (2018-10-24)
1439
+ * **[Breaking change]** Rename `web.waitForElementPresent` to `web.waitForExist`.
1440
+ * **[Breaking change]** Rename `web.isElementPresent` to `web.isExist`.
1441
+ * **[Breaking change]** Rename `web.isElementVisible` to `web.isVisible`.
1442
+ * **[Breaking change]** Rename `web.assertElementPresent` to `web.assertExist`.
1443
+ * **[Breaking change]** Rename `web.executeScript` to `web.execute`.
1444
+ * **[Breaking change]** Rename `web.getPageSource` to `web.getSource`.
1445
+ * **[Breaking change]** Rename `mob.waitForElement` to `mob.waitForExist`.
1446
+ * **[Breaking change]** Rename `mob.setValue` to `mob.type`.
1447
+ * **[Breaking change]** Remove empty string locator from `web.selectWindow`.
1448
+ * **[Breaking change]** Change `web.selectFrame` behavior:
1449
+ * Multiple locators can be passed as arguments now instead of separating the frame XPathes with
1450
+ `';;'`
1451
+ * `"relative=parent"` changed to "parent"
1452
+ * `"relative=top"` changed to "top"
1453
+ * `"index=x"` changed to x (passed as a number)
1454
+ * **[Breaking change]** Add `mob.setAutoWait`.
1455
+ * Add `web.setAutoWait`.
1456
+ * Add X offset support in `web.scrollToElement`.
1457
+ * Improved error handling for situations when invalid arguments are passed to methods.
1458
+ * Fix documentation.
1459
+ * Error code names changes:
1460
+ * ASSERT -> ASSERT_ERROR
1461
+ * VERIFY -> VERIFY_ERROR
1462
+ * NO_SUCH_ELEMENT -> ELEMENT_NOT_FOUND
1463
+ * NO_SUCH_FRAME -> FRAME_NOT_FOUND
1464
+ * UNKNOWN_COMMAND -> UNKNOWN_COMMAND_ERROR
1465
+ * NO_SUCH_WINDOW -> WINDOW_NOT_FOUND
1466
+ * APPIUM_SERVER_UNREACHABLE -> APPIUM_UNREACHABLE_ERROR
1467
+ * SELENIUM_SERVER_UNREACHABLE SELENIUM_UNREACHABLE_ERROR
1468
+ * NOT_IMPLEMENTED -> NOT_IMPLEMENTED_ERROR
1469
+ * DB_CONNECTION -> DB_CONNECTION_ERROR
1470
+ * DB_QUERY -> DB_QUERY_ERROR
1471
+ * SOAP -> SOAP_ERROR
1472
+ * Do not try to invoke web.clickHidden from web.click when element not found.
1473
+ * Fix hang when calling method on a uninitialized module.
1474
+ * Fix hidden click fallback in `web.click`.
1475
+ * Fix `web.type` not clearing the previous value.
1476
+ * `web.selectWindow` will automatically wait for window to appear when using `title` locator.
1477
+ * Add optional `notOlderThan` argument to `twilio.getLastSms`.
1478
+ * Fixed `transaction` not working if specified before `init`.
1479
+
1480
+ ## v0.32.0 (2018-08-09)
1481
+ * Fix `web.isAlertPresent`.
1482
+ * Add `mob.clickMultipleTimes`.
1483
+ * Fix int handling in `assert.equal`
1484
+ * Perform Javascript injection click if regular click fails in `web.click`
1485
+ * Reimplemented `mob.clickLong` using a different method to support iOS 11.4.
1486
+ * Fix bug with skipping second record in CSV file.
1487
+ * Add `http.getResponseHeaders`.
1488
+ * Fix hang in `twilio.getLastSms`.
1489
+ * Add support for script arguments in `web.executeScript`.
1490
+ * Improve logging.
1491
+ * Drop `verify` module.
1492
+ * Bump dependencies.
1493
+
1494
+ ## v0.31.1 (2018-06-01)
1495
+ * Fix `mob.getCaps` for suites.
1496
+ * Bump default swipe speed for `mob.swipe` to 30.
1497
+ * Fix `mob.execute`.
1498
+ * Fix `email` module to read last email instead of the first.
1499
+ * Bump dependencies.
1500
+
1501
+ ## v0.31.0 (2018-05-16)
1502
+ * Add `web.getUrl` command.
1503
+ * Change `web.assertText` and `web.assertValue` commands behavior to pass text or value assertions of hidden elements.
1504
+
1505
+ ## v0.30.2 (2018-05-16)
1506
+ * Revised handling of 'require' calls from Oxygen script.
1507
+
1508
+ ## v0.30.1 (2018-05-16)
1509
+ * Various `twilio` module fixes.
1510
+ * Various `email` module fixes.
1511
+
1512
+ ## v0.30.0 (2018-05-15)
1513
+ * Add support for referencing global node modules with `require`.
1514
+ * Add `require.allow` option to control if `require` usage is allowed within the script.
1515
+ * Add `opt.autoReport` flag to test script - allow to turn on/off auto-reporting steps.
1516
+ * Add preliminary implementation of `twilio` module.
1517
+ * Add preliminary implementation of `email` module.
1518
+
1519
+ ## v0.29.0 (2018-04-22)
1520
+ * Add `mob.getValue`.
1521
+ * Fix `mob.getText`.
1522
+ * Allow to use `require` with global modules inside test scripts.
1523
+ * Use window size instead of viewport in `web.setWindowSize`
1524
+ * Add `customStep` method.
1525
+ * Add support for `continueOnError` option.
1526
+ * Fix `mob` module re-initialization when `reopenSession` is specified.
1527
+
1528
+ ## v0.28.0 (2018-03-16)
1529
+ * Add --delay switch for delaying command execution.
1530
+ * Add `web.waitForNotExist`.
1531
+ * Throw NO_SUCH_ELEMENT from `web.waitForVisible` if element doesn't exist.
1532
+ * Deprecate `web.waitForElementPresent`.
1533
+ * Throw LOCATOR_MATCHES_MULTIPLE_ELEMENTS from `web.gettAttribute` and `web.getText` if the locator matches multiple elements.
1534
+ * Add `mob.selectFrame`.
1535
+ * Fix context and init method capabilities merging.
1536
+ * Bump dependencies.
1537
+
1538
+ ## v0.27.0 (2018-02-27)
1539
+ * Add `mob.clickLong`.
1540
+ * Don't check for element visibility in `web.select`.
1541
+
1542
+ ## v0.26.1 (2018-02-14)
1543
+ * Fix parameters reading.
1544
+
1545
+ ## v0.26.0 (2018-02-08)
1546
+ * Add `mob.enableNetwork`.
1547
+ * Fix `mob.swipe` and `mob.dragAndDrop` docs.
1548
+ * Bump dependencies.
1549
+
1550
+ ## v0.25.0 (2018-01-21)
1551
+ * Remove '-m' switch.
1552
+ * Add support for accessibility id locators on Android.
1553
+ * [Breaking change] Use ~ for accessibility id locators on iOS instead of "id=" prefix.
1554
+ * Make driver instance accessible from user level scripts.
1555
+ * Add support for external debuggers.
1556
+
1557
+ ## v0.24.1 (2017-12-25)
1558
+ * Emit iteration-end event.
1559
+
1560
+ ## v0.24.0 (2017-12-25)
1561
+ * Add `mob.alertAccept`.
1562
+ * Fix accessibility id locator strategy for native iOS applications.
1563
+ * Documentation fixes.
1564
+
1565
+ ## v0.23.0 (2017-12-16)
1566
+ * [Breaking change] Require explicit web module initialization with `web.init`.
1567
+ * Add `mob.unlockPattern`.
1568
+ * A more reliable `web.waitFor*` implementation.
1569
+ * Add preliminary support for JUnit reports.
1570
+ * Fix suites execution stopping on the first fatal error.
1571
+ * Fix status code handling in `http` module.
1572
+ * Add support for native android id locators without package prefix.
1573
+ * Trim and collapse white space for `web.getAttribute`, `getCssValue`, `getText` return values.
1574
+ * Collapse whitespace in patterns.
1575
+ * Add preliminary `date` module implementation.
1576
+ * webdriverio@4.9.9
1577
+
1578
+ ## v0.22.0 (2017-11-11)
1579
+ * Fix time formatting in reports.
1580
+ * Fix reliability issues with `web.waitForWindow`.
1581
+ * Add `mob.smsClickLink`.
1582
+ * Change `mob.getSmsText` to `mob.smsGetText`.
1583
+
1584
+ ## v0.21.0 (2017-10-30)
1585
+ * Add `serial.write` and `serial.getBuffer`.
1586
+ * `mob.getSmsText` now uses android-smspopup application (see documentation) instead of SMSPopup from Play Store and accepts optional `wait` argument.
1587
+ * Add `mob.isExist`.
1588
+ * Fix regex pattern matching not performing the matching globally.
1589
+
1590
+ ## v0.20.0 (2017-10-23)
1591
+ * Fixed certain errors being ignored.
1592
+ * Add `serial` module.
1593
+ * Add `http` module.
1594
+ * Add `mob.getLcoation`
1595
+ * Fixed empty pattern matching in `web` module.
1596
+ * Fixed `web.selectWindow` and `web.waitForWindow` failing if there is no currently active window.
1597
+ * Fixed `name` locator handling in `web` module.
1598
+
1599
+ ## v0.19.6 (2017-10-17)
1600
+ * Return attribute only for the first matching element in web.getAttribute.
1601
+ * Fix glob pattern matching in multi line text.
1602
+
1603
+ ## v0.19.5 (2017-10-16)
1604
+ * Return boolean instead of string from mob.is* commands.
1605
+
1606
+ ## v0.19.4 (2017-10-15)
1607
+ * Fix mob.scrollIntoElement
1608
+
1609
+ ## v0.19.2 (2017-10-12)
1610
+ * Use local time instead of UTC in reports.
1611
+
1612
+ ## v0.19.0 (2017-10-11)
1613
+ * Add mob.isCheckable, mob.isChecked, mob.isClickable, mob.isSelected
1614
+ * mob.scroll command renamed to mob.dragAndDrop
1615
+ * Fix web.type failing if passed value is not a string.
1616
+ * Fix handling of parameters with underscore in the name.
1617
+ * Update dependencies.
1618
+
1619
+ ## v0.18.2 (2017-10-01)
1620
+ * Fix error types generated on waitForExist and and waitForVisible.
1621
+
1622
+ ## v0.18.0 (2017-09-29)
1623
+ * `web`, `soap`, and `db` modules, previously implemented in C#, have been reimplemented in Node.js. This provides a number of significant benefits - faster test initialization, removes the need for version matching between Oxygen and Selenium servers, solves a number of issues on Linux/OS X related to Mono version incompatibility, allows using `soap` and `db` along with the `mob` module, and provides more flexibility in module's development.
1624
+
1625
+ Note that .NET/Mono is still required if you wish to generate HTML or PDF reports.
1626
+ In addition, `db` module now requires `unixODBC` libraries to be installed. See README. If `unixODBC` is not available the module won't be installed.
1627
+
1628
+ Module specific changes are as follows:
1629
+
1630
+ __`soap`__
1631
+ *Removed*
1632
+ `get12` - Removed in favor of the new `soap.get` method.
1633
+ *Changed*
1634
+ `get` - Signature changed to accept WSDL URL, method name, and any complex objects as service arguments. Unlike prior implementation this method will return object instead of a JSON serialization.
1635
+ *Added*
1636
+ `describe`
1637
+
1638
+ __`web`__
1639
+ *Removed*
1640
+ `setBaseUrl`, `quit`, `getXMLPageSourceAsJSON`
1641
+ *Changed*
1642
+ [`waitForWindow`, `waitForValue`, `waitForText`, `waitForNotValuec`, `waitForNotValue`, `waitForElementPresent`,
1643
+ `assertValue`, `assertElementPresent`, `assertAlert`, `assertSelectedValue`, `assertSelectedLabel`] - Now accept timeout as and optional argument.
1644
+ `type` - Support for `${KEY_}` key codes has been removed in favor of Unicode characters.
1645
+ `point` - Accepts two optional arguments xoffset and yoffset.
1646
+ `getWindowHandles` - Return type changed to String[].
1647
+ `getElementCount` - Accepts any of supported locators in addition to XPath.
1648
+ `getElementCount` - Return type changed to Object.
1649
+
1650
+ __`eyes`__
1651
+ Temporary removed pending rewrite.
1652
+
1653
+
1654
+ * Updated dependencies.
1655
+
1656
+ ## v0.17.0 (2017-09-17)
1657
+ * Fix iteration collapsing not working in HTML reports when having more than one iteration.
1658
+ * Improve HTML reports.
1659
+ * Add PDF reporter (--rf=pdf switch).
1660
+ * Fix oxygen bin not launching on OSX and Linux.
1661
+ * Fix random parameters mode.
1662
+
1663
+ ## v0.16.0 (2017-09-02)
1664
+ * Add web.getCssValue command.
1665
+
1666
+ ## v0.15.0 (2017-08-21)
1667
+ * Add mob.tap command.
1668
+
1669
+ ## v0.14.1 (2017-08-14)
1670
+ * Make log.* commands generate proper output in html reports.
1671
+ * Remove log.fatal command.
1672
+
1673
+ ## v0.14.0 (2017-08-05)
1674
+ * Additional mobile locators: desc-contains, text-contains, scrollable, link-contains.
1675
+ * Fix not being able to use transactions when running web tests with multiple iterations.
1676
+ * Add ability to run mobile tests against remote hubs.
1677
+
1678
+ ## v0.13.3 (2017-07-31)
1679
+ * Fix number of issues with Excel reports generation.
1680
+ * Fix report generation when --pm=all option is used.
1681
+ * Don't generate unnecessary XML report when using the --rf=html option.
1682
+
1683
+ ## v0.13.2 (2017-07-28)
1684
+ * Fix global installation.
1685
+
1686
+ ## v0.13.1 (2017-07-28)
1687
+ * Initial release published to npm registry.