All Versions
131
Latest Version
Avg Release Cycle
17 days
Latest Release
-
Changelog History
Page 13
Changelog History
Page 13
-
v0.3.2 Changes
- โ Added
codeceptjs list
command which shows all available methods ofI
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
- โ Added
-
v0.3.1 Changes
- ๐ Fixed
init
command
- ๐ Fixed
-
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
anddontSeeElement
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
- ๐ [WebDriverIO] added
-
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
(aliascodecept_helper)
, object use for writing custom Helpers. Generator updated. Changes to #48
- ๐ Fixed
-
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
- ๐ [WebDriverIO] fixed
-
v0.2.2 Changes
๐ Fixed generation of custom steps file and page objects. Please replace
require('codeceptjs/actor')
toactor
in yourcustom_steps.js
. โ Whenever you need to createI
object (in page objects, custom steps, but not in tests) just callactor()
;