All Versions
131
Latest Version
Avg Release Cycle
17 days
Latest Release
-

Changelog History
Page 13

  • v0.3.2 Changes

    • โž• Added codeceptjs list command which shows all available methods of I object.
    • ๐Ÿ’ป [Protractor][SeleniumWebdriver] fixed closing browser instances
    • [Protractor][SeleniumWebdriver] doubleClick method added
    • [WebDriverIO][Protractor][SeleniumWebdriver] doubleClick method to locate clickable elements by text, context option added.
    • ๐Ÿ›  Fixed using assert in generator without yields #89
  • v0.3.1 Changes

    • ๐Ÿ›  Fixed init command
  • v0.3.0 Changes

    ๐Ÿ’ฅ Breaking Change: webdriverio package removed from dependencies list. You will need to install it manually after the upgrade. โœ… Starting from 0.3.0 webdriverio is not the only backend for running selenium tests, so you are free to choose between Protractor, SeleniumWebdriver, and webdriverio and install them.

    • [Protractor] helper added. Now you can test AngularJS applications by using its official library within the unigied CodeceptJS API!
    • [SeleniumWebdriver] helper added. You can switch to official JS bindings for Selenium.
    • โšก๏ธ [WebDriverIO] updated to webdriverio v 4.0
    • [WebDriverIO] clearField method added by @fabioel
    • [WebDriverIO] added dragAndDrop by @fabioel
    • ๐Ÿ›  [WebDriverIO] fixed scrollTo method by @sensone
    • ๐Ÿ [WebDriverIO] fixed windowSize: maximize option in config
    • ๐Ÿ‘€ [WebDriverIO] seeElement and dontSeeElement check element for visibility by @fabioel and @davertmik
    • ๐Ÿ‘€ [WebDriverIO] seeElementInDOM, dontSeeElementInDOM added to check element exists on page.
    • ๐Ÿ›  [WebDriverIO] fixed saving screenshots on failure. Fixes #70
    • ๐Ÿ›  fixed within block doesn't end in output not #79
  • v0.2.8 Changes

    • ๐Ÿ‘€ [WebDriverIO] added seeNumberOfElements by @fabioel
  • v0.2.7 Changes

    • ๐Ÿ–จ process ends with exit code 1 on error or failure #49
    • ๐Ÿ›  fixed registereing global Helper #57
    • ๐Ÿ›  fixed handling error in within block #50
  • v0.2.6 Changes

    • ๐Ÿ›  Fixed done() was called multiple times
    • [WebDriverIO] added waitToHide method by @fabioel
    • โž• Added global Helper (alias codecept_helper), object use for writing custom Helpers. Generator updated. Changes to #48
  • v0.2.5 Changes

    • ๐Ÿ›  Fixed issues with using yield inside a test #45 #47 #43
    • ๐Ÿ›  Fixed generating a custom helper. Helper class is now accessible with codecept_helper var. Fixes #48
  • v0.2.4 Changes

    • ๐Ÿ›  Fixed accessing helpers from custom helper by @pim.
  • v0.2.3 Changes

    • ๐Ÿ‘€ [WebDriverIO] fixed seeInField to work with single value elements like: input[type=text], textareas, and multiple: select, input[type=radio], input[type=checkbox]
    • ๐Ÿš€ [WebDriverIO] fixed pressKey, key modifeiers (Control, Command, Alt, Shift) are released after the action
  • v0.2.2 Changes

    ๐Ÿ›  Fixed generation of custom steps file and page objects. Please replace require('codeceptjs/actor') to actor in your custom_steps.js. โœ… Whenever you need to create I object (in page objects, custom steps, but not in tests) just call actor();