CodeceptJS v2.0.8 Release Notes

    • [Puppeteer] Added downloadFile action by @PeterNgTr.

    โœ… Use it with FileSystem helper to test availability of a file:

      const fileName = await I.downloadFile('a.file-link');
      I.amInPath('output');
      I.seeFile(fileName);
    

    ๐Ÿ‘€ > Actions amInPath and seeFile are taken from FileSystem helper

    • ๐Ÿ”Œ [Puppeteer] Fixed autoLogin plugin with Puppeteer by @davertmik
    • ๐Ÿ‘€ [WebDriver] seeInField should throw error if element has no value attrubite. By @PeterNgTr
    • ๐Ÿ‘€ [WebDriver] Fixed seeTextEquals passes for any string if element is empty by @PeterNgTr.
    • โœ… [WebDriver] Internal refctoring to use el.isDisplayed to match latest webdriverio implementation. Thanks to @LukoyanovE
    • ๐Ÿ”Œ [allure plugin] Add ability enable screenshotDiff plugin by @Vorobeyko
    • ๐Ÿ›  [Appium] Fixed locator.stringify call by @LukoyanovE