New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More
Socket
Sign inDemoInstall
Socket

codeceptjs

Package Overview
Dependencies
Maintainers
2
Versions
243
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

codeceptjs - npm Package Versions

1
25

3.2.0

Diff

Changelog

Source

3.2.0

🛩️ Features:

Timeouts implemented

  • global timeouts (via timeout config option).
    • Breaking change: timeout option expects timeout in seconds, not in milliseconds as it was previously.
  • test timeouts (via Scenario and Feature options)
    • Breaking change: Feature().timeout() and Scenario().timeout() calls has no effect and are deprecated
// set timeout for every test in suite to 10 secs
Feature('tests with timeout', { timeout: 10 });

// set timeout for this test to 20 secs
Scenario('a test with timeout', { timeout: 20 }, ({ I }) => {});
  • step timeouts (See #3059 by @nikocanvacom)
// set step timeout to 5 secs
I.limitTime(5).click('Link');
  • stepTimeout plugin introduced to automatically add timeouts for each step (#3059 by @nikocanvacom).

retryTo plugin introduced to rerun a set of steps on failure:

// editing in text in iframe
// if iframe was not loaded - retry 5 times
await retryTo(() => {
  I.switchTo('#editor frame');
  I.fillField('textarea', 'value');
}, 5);
  • [Playwright] added locale configuration
  • [WebDriver] upgraded to webdriverio v7

🐛 Bugfixes:

  • Fixed allure plugin "Unexpected endStep()" error in #3098 by @abhimanyupandian
  • [Puppeteer] always close remote browser on test end. See #3054 by @mattonem
  • stepbyStepReport Plugin: Disabled screenshots after test has failed. See #3119 by @ioannisChalkias
davert
published 3.1.3 •

Changelog

Source

3.1.3

🛩️ Features:

  • BDD Improvement. Added DataTableArgument class to work with table data structures.
const { DataTableArgument } = require('codeceptjs');
//...
Given('I have an employee card', (table) => {
  const dataTableArgument = new DataTableArgument(table);
  const hashes = dataTableArgument.hashes(); 
  // hashes = [{ name: 'Harry', surname: 'Potter', position: 'Seeker' }];
  const rows = dataTableArgument.rows();
  // rows = [['Harry', 'Potter', Seeker]];
  }

See updated BDD section for more API options. Thanks to @EgorBodnar

  • Support cjs file extensions for config file: codecept.conf.cjs. See #3052 by @kalvenschraut
  • API updates: Added test.file and suite.file properties to test and suite objects to use in helpers and plugins.

🐛 Bugfixes:

  • [Playwright] Fixed resetting test.artifacts for failing tests. See #3033 by @jancorvus. Fixes #3032
  • [Playwright] Apply basicAuth credentials to all opened browser contexts. See #3036 by @nikocanvacom. Fixes #3035
  • [WebDriver] Updated webdriverio default version to ^6.12.1. See #3043 by @sridhareaswaran
  • [Playwright] I.haveRequestHeaders affects all tabs. See #3049 by @jancorvus
  • BDD: Fixed unhandled empty feature files. Fix #3046 by @abhimanyupandian
  • Fixed RangeError: Invalid string length in recorder.js when running huge amount of tests.
  • [Appium] Fixed definitions for touchPerform, hideDeviceKeyboard, removeApp by @mirao

📖 Documentation:

davert
published 3.1.2 •

Changelog

Source

3.1.2

🛩️ Features:

  • Added coverage plugin to generate code coverage for Playwright & Puppeteer. By @anirudh-modi
  • Added subtitle plugin to generate subtitles for videos recorded with Playwright. By @anirudh-modi
  • Configuration: config.tests to accept array of file patterns. See #2994 by @monsteramba
exports.config = {
  tests: ['./*_test.js','./sampleTest.js'],
  // ... 
}
  • Notification is shown for test files without Feature(). See #3011 by @PeterNgTr

🐛 Bugfixes:

  • [Playwright] Fixed #2986 error is thrown when deleting a missing video. Fix by @hatufacci
  • Fixed false positive result when invalid function is called in a helper. See #2997 by @abhimanyupandian
  • [Appium] Removed full page mode for saveScreenshot. See #3002 by @nlespiaucq
  • [Playwright] Fixed #3003 saving trace for a test with a long name. Fix by @hatufacci

🎱 Other:

  • Deprecated puppeteerCoverage plugin in favor of coverage plugin.
davert
published 3.1.1 •

Changelog

Source

3.1.1

  • [Appium] Fixed #2759 grabNumberOfVisibleElements, grabAttributeFrom, grabAttributeFromAll to allow id locators.
davert
published 3.1.0 •

Changelog

Source

3.1.0

  • [Plawyright] Updated to Playwright 1.13
  • [Playwright] Possible breaking change: BrowserContext is initialized before each test and closed after. This behavior matches recommendation from Playwright team to use different contexts for tests.
  • [Puppeteer] Updated to Puppeteer 10.2.
  • [Protractor] Helper deprecated

🛩️ Features:

  • [Playwright] Added recording of video and traces by @davertmik
  • [Playwritght] Mocking requests implemented via route API of Playwright by @davertmik
  • [Playwright] Added support for React locators in #2912 by @AAAstorga

🐛 Bugfixes:

  • [Puppeteer] Fixed #2244 els[0]._clickablePoint is not a function by @karunandrii.
  • [Puppeteer] Fixed fillField to check for invisible elements. See #2916 by @anne-open-xchange
  • [Playwright] Reset of dialog event listener before registration of new one. #2946 by @nikocanvacom
  • Fixed running Gherkin features with run-multiple using chunks. See #2900 by @andrenoberto
  • Fixed #2937 broken typings for subfolders on Windows by @jancorvus
  • Fixed issue where cucumberJsonReporter not working with fakerTransform plugin. See #2942 by @ilangv
  • Fixed #2952 finished job with status code 0 when playwright cannot connect to remote wss url. By @davertmik
davert
published 3.0.7 •

Changelog

Source

3.0.7

📖 Documentation fixes:

  • Remove broken link from Nightmare helper. See #2860 by @Arhell
  • Fixed broken links in playwright.md. See #2848 by @johnhoodjr
  • Fix mocha-multi config example. See #2881 by @rimesc
  • Fix small errors in email documentation file. See #2884 by @mkrtchian
  • Improve documentation for Sharing Data Between Workers section. See #2891 by @ngraf

🛩️ Features:

  • [WebDriver] Shadow DOM Support for Webdriver. See #2741 by @gkushang
  • [Release management] Introduce the versioning automatically, it follows the semantics versioning. See #2883 by @PeterNgTr
  • Adding opts into Scenario.skip that it would be useful for building reports. See #2867 by @AlexKo4
  • Added support for attaching screenshots to cucumberJsonReporter See #2888 by @fijijavis
  • Supported config file for codeceptjs shell command. See #2895 by @PeterNgTr:
npx codeceptjs shell -c foo.conf.js

Bug fixes:

  • [GraphQL] Use a helper-specific instance of Axios to avoid contaminating global defaults. See #2868 by @vanvoljg
  • A default system color is used when passing non supported system color when using I.say(). See #2874 by @PeterNgTr
  • [Playwright] Avoid the timout due to calling the click on invisible elements. See #2875 by cbayer97
davert
published 3.0.6 •

Changelog

Source

3.0.6

  • [Playwright] Added electron as a browser to config. See #2834 by @cbayer97
  • [Playwright] Implemented launchPersistentContext to be able to launch persistent remote browsers. See #2817 by @brunoqueiros. Fixes #2376.
  • Fixed printing logs and stack traces for run-workers. See #2857 by @haveac1gar. Fixes #2621, #2852
  • Emit custom messages from worker to the main thread. See #2824 by @jccguimaraes
  • Improved workers processes output. See #2804 by @drfiresign
  • BDD. Added ability to use an array of feature files inside config in gherkin.features. See #2814 by @jbergeronjr
"features": [
  "./features/*.feature",
  "./features/api_features/*.feature"
],
  • Added getQueueId to reporter to rerun a specific promise. See #2837 by @jonatask
  • Added fakerTransform plugin to use faker data in Gherkin scenarios. See #2854 by @adrielcodeco
Scenario Outline: ...
  Given ...
  When ...
  Then ...

  Examples:
  | productName          | customer              | email              | anythingMore |
  | {{commerce.product}} | Dr. {{name.findName}} | {{internet.email}} | staticData   |
  • [REST] Use class instance of axios, not the global instance, to avoid contaminating global configuration. #2846 by @vanvoljg
  • [Appium] Added tunnelIdentifier config option to provide tunnel for SauceLabs. See #2832 by @gurjeetbains
davert
published 3.0.5 •

Changelog

Source

3.0.5

Features:

  • Official Docker image for CodeceptJS v3. New Docker image is based on official Playwright image and supports Playwright, Puppeteer, WebDriver engines. Thanks @VikentyShevyrin
  • Better support for Typescript codecept.conf.ts configuration files. See #2750 by @elaichenkov
  • Propagate more events for custom parallel script. See #2796 by @jccguimaraes
  • [mocha-junit-reporter] Now supports attachments, see documentation for details. See #2675 by @Shard
  • CustomLocators interface for TypeScript to extend from LocatorOrString. See #2798 by @danielrentz
  • [REST] Mask sensitive data from log messages.
I.sendPatchRequest('/api/users.json', secret({ "email": "user@user.com" }));

See #2786 by @PeterNgTr

Bug fixes:

  • Fixed reporting of nested steps with PageObjects and BDD scenarios. See #2800 by @davertmik. Fixes #2720 #2682
  • Fixed issue with codeceptjs shell which was broken since 3.0.0. See #2743 by @stedman
  • [Gherkin] Fixed issue suppressed or hidden errors in tests. See #2745 by @ktryniszewski-mdsol
  • [Playwright] fix grabCssPropertyFromAll serialization by using property names. See #2757 by @elaichenkov
  • [Allure] fix report for multi sessions. See #2771 by @cbayer97
  • [WebDriver] Fix locator object debug log messages in smart wait. See 2748 by @elaichenkov

Documentation fixes:

  • Fixed some broken examples. See #2756 by @danielrentz
  • Fixed Typescript typings. See #2747, #2758 and #2769 by @elaichenkov
  • Added missing type for xFeature. See #2754 by @PeterNgTr
  • Fixed code example in Page Object documentation. See #2793 by @mkrtchian

Library updates:

  • Updated Axios to 0.21.1. See by @sseide
  • Updated @pollyjs/core @pollyjs/adapter-puppeteer. See #2760 by @Anikethana
davert
published 3.0.4 •

Changelog

Source

3.0.4

  • Hotfix Fixed init script by adding cross-spawn package. By @vipulgupta2048
  • Fixed handling error during initialization of run-multiple. See #2730 by @wagoid
davert
published 3.0.3 •

Changelog

Source

3.0.3

  • Playwright 1.7 support
  • [Playwright] Fixed handling null context in click. See #2667 by @matthewjf
  • [Playwright] Fixed Cannot read property '$$' of null when locating elements. See #2713 by @matthewjf
  • Command npx codeceptjs init improved
    • auto-installing required packages
    • better error messages
    • fixed generating type definitions
  • Data Driven Tests improvements: instead of having one skipped test for data driven scenarios when using xData you get a skipped test for each entry in the data table. See #2698 by @Georgegriff
  • [Puppeteer] Fixed that waitForFunction was not working with number values. See #2703 by @MumblesNZ
  • Enabled autocompletion for custom helpers. #2695 by @PeterNgTr
  • Emit test.after on workers. Fix #2693 by @jccguimaraes
  • TypeScript: Allow .ts config files. See #2708 by @elukoyanov
  • Fixed definitions generation errors by @elukoyanov. See #2707 and #2718
  • Fixed handing error in _after function; for example, browser is closed during test and tests executions is stopped, but error was not logged. See #2715 by @elukoyanov
  • Emit hook.failed in workers. Fix #2723 by @jccguimaraes
  • [wdio plugin] Added seleniumArgs and seleniumInstallArgs config options for plugin. See #2687 by @andrerleao
  • [allure plugin] Added addParameter method in #2717 by @jancorvus. Fixes #2716
  • Added mocha-based --reporter-options and --reporter <name> commands to run-workers command by in #2691 @Ameterezu
  • Fixed infinite loop for junit reports. See #2691 @Ameterezu
  • Added status, start/end time, and match line for BDD steps. See #2678 by @ktryniszewski-mdsol
  • [stepByStepReport plugin] Fixed "helper.saveScreenshot is not a function". Fix #2688 by @andrerleao
SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc