Open greenkeeper[bot] opened 5 years ago
devDependency
nightwatch was updated from 1.1.11
to 1.1.12
.Your tests for group default are passing again with this update. Explicitly upgrade default to this version π
devDependency
nightwatch was updated from 1.1.12
to 1.1.13
.Your tests for group default are passing again with this update. Explicitly upgrade default to this version π
.verify
assertions not working correctlyThe new version differs by 11 commits.
47b9785
1.1.13
a658140
Fixed #2141 - .verify assertions not working correctly
d448b7a
Update README.md
f8f8368
Update README.md
f15e976
Update README.md
f1c337b
1.1.12
4ed1fda
reverted refactoring
e7814cb
Fixed #2123 - .init() command
4f34b81
some refactoring of session and webdriver transport
b0de252
Fix #2118 - Set default POST body to be empty JSON
6082bac
Add funding
See the full diff
devDependency
nightwatch was updated from 1.1.13
to 1.2.1
.Your tests are still failing with this version. Compare changes
Added several new commands in-line with the W3C Webdriver API:
waitForElementVisible
doesn't throw an error anymore if the element cannot be found - #2148.timeouts()
command;suppressNotFoundErrors
option for element selector properties to enable suppressing NoSuchElement
errors when element is not found for commands such as .click()
or .getText()
etc.The new version differs by 38 commits.
dfe1681
1.2.1
324a8cf
Updated unit test for maximize
caed58d
Merge branch 'master' of github.com:nightwatchjs/nightwatch
6bb7a2d
Update actions.js
2a064e6
fix maximize a POST command
68bdada
1.2.0
c795d08
fixed a typo in suppressNotFoundErrors option
d7e4b82
Updated .timeouts() to be compatible with W3C Webdriver API; api docs updates
1efabca
Merge branch 'master' of github.com:nightwatchjs/nightwatch
7f21b96
Bump lodash from 4.17.11 to 4.17.15 (#2172)
d0e2411
Merge branch 'iberdinsky-skilld-2155-possible_element_selector_fix'
142f84f
Merge branch '2155-possible_element_selector_fix' of https://github.com/iberdinsky-skilld/nightwatch into iberdinsky-skilld-2155-possible_element_selector_fix
81c4eee
fix #2168 - added window related W3C commands
99b47c0
updated condition. in object 2155
bcdf0d1
updated the check for possible element selector arguments for page object commands
There are 38 commits in total.
See the full diff
devDependency
nightwatch was updated from 1.2.1
to 1.2.2
.Your tests are still failing with this version. Compare changes
The new version differs by 21 commits.
7b2ef1e
updated eslint to v6
97bdf86
1.2.2
7c34929
updated selenium server unit tests and webdriver startup settings
0ddb8e5
added default value for disable_error_log setting
7fde76a
Expose status polling settings
dd8888e
suppress error log
d503b83
Update bug_report.md
59e43b0
Update README.md
07dda94
Update README.md
7499b11
Update README.md
1077b5c
Update README.md
3ca1f1e
Update README.md
01197fb
Update README.md
f5e2b1f
Delete ISSUE_TEMPLATE.md
58c6077
Update feature_request.md
There are 21 commits in total.
See the full diff
devDependency
nightwatch was updated from 1.2.2
to 1.2.3
.Your tests are still failing with this version. Compare changes
Fixed #2190 - test error/failure stack traces weren't showing correctly
devDependency
nightwatch was updated from 1.2.3
to 1.2.4
.Your tests are still failing with this version. Compare changes
devDependency
nightwatch was updated from 1.2.4
to 1.3.0
.Your tests are still failing with this version. Compare changes
Added BDD describe interface for writing tests. No further configuration is necessary and both exports and bdd interfaces can be mixed together (though not in the same file).
More details
You can use .not assertions for every existing and custom assertion. Custom assertions will require to be updated to the new interface in order to make use of .not
. Refer to the Custom assertions docs for details.
module.exports = {
demoTest(browser) {
browser
.assert.not.elementPresent('.not_present') // previously .assert.elementNotPresent()
.assert.not.visible('.non_visible'); // previously .assert.hidden()
.assert.not.urlContains('http://');
// ...
}
}
--headless
- Launch the browser (Chrome or Firefox) in headless mode.--timeout
- Set the global timeout for assertion retries before an assertion fails. The various timeout values are defined in the Globals section.nightwatch
Test Runnernightwatch.conf.js
config file, based on the operation system and existing driver packages. More detailsThe new version differs by 26 commits.
48c542e
1.3.0
cfd74ce
updated api docs
aea3b9a
updated tests
34c99c3
Some minor output reporting improvements
e995c35
added settings tests
8a7e243
updated mocha version and added is-ci package
dddd667
finished updating tests
ea1134b
fixed some linting errors
fdbc101
updated api unit tests
901be6b
restructured assert apis; added domProperty assertions; refactored tests
0d3ceb5
Partial restructuring of api loading and initializing; added .not.assert
51a34ed
added more tests for describe interface
47e4dd1
updated package-lock
a558d76
added more unit tests for describe and fixed a few other issues with the test runner
2ef283e
Added support for bdd describe interface for writing tests and some refactoring
There are 26 commits in total.
See the full diff
devDependency
nightwatch was updated from 1.3.0
to 1.3.1
.Your tests are still failing with this version. Compare changes
nightwatch.conf.js
fileThe new version differs by 8 commits.
d5809da
1.3.1
b4e2b47
Update README.md
9a2bb99
Update README.md
29df8a9
Update README.md
447cf00
Update README.md
ba84ab7
Update README.md
7617ab8
Fixed #2255 - callback not being called when errors occurred during an element command; improved the auto-generated config file
4625b1c
Update README.md
See the full diff
devDependency
nightwatch was updated from 1.3.1
to 1.3.2
.Your tests are still failing with this version. Compare changes
devDependency
nightwatch was updated from 1.3.2
to 1.3.3
.Your tests are still failing with this version. Compare changes
The new version differs by 16 commits.
80c0ed4
1.3.3
f4d378c
updated unit tests
a8ef5d8
Merge branch 'zymotik-feature/junit-xml-error-message-extension'
aecdcc5
Merge branch 'feature/junit-xml-error-message-extension' of https://github.com/zymotik/nightwatch into zymotik-feature/junit-xml-error-message-extension
5d5e9db
Merge branch 'MicahLC-add-log-timestamp-option'
cdcacfc
Fixed #2286 - es6 await commands not working on page objects
b72a43a
Fixed #2269 - negate (".not") assertions not working with page objects
a17203c
api-docs: update keys (#2290)
0a6adbb
Fix typo. (#2273)
1542d86
Fixed #2286 - es6 await commands not working on page objects
90eb084
Fixed #2269 - negate (".not") assertions not working with page objects
4291b4d
api-docs: update keys (#2290)
9d97f6c
Fix typo. (#2273)
ad4a58d
Add cli option for showing timestamp in logs.
6fb587c
test error messages in JUnit xml reporter
There are 16 commits in total.
See the full diff
devDependency
nightwatch was updated from 1.3.3
to 1.3.4
.Your tests are still failing with this version. Compare changes
devDependency
nightwatch was updated from 1.3.4
to 1.3.5
.Your tests are still failing with this version. Compare changes
optimist
package and updated implementation of cli help display;The new version differs by 11 commits.
25437a8
1.3.5
ab37630
removed optimist as dependency and updated cli argv implementation; added support for coloring display when using newer CIs.
f238827
fixed type in expect docs
a0025f7
- fixed an issue with specifying a non-default port to geckodriver and chromedriver;
36f6e16
remove 8 of 14 vulnerabilities with npm update (#2378)
fbc599d
Fixed #2375 - remove incorrect cli args from safaridriver.
c5bb12b
chore: removed unused function variable from authorization (#2342)
b6119ef
docs: Fix simple typo, stragy -> strategy (#2380)
4d1f7fb
Update visible.js (#2393)
5f4d2ab
Add missing space to new error line. (#2397)
c6ad58e
Update property.js (#2332)
See the full diff
devDependency
nightwatch was updated from 1.3.5
to 1.3.6
.Your tests are still failing with this version. Compare changes
--filter
argument was ignored if both --filter
and --skiptags
are set--filter
argument and an empty src_folders
setting - b2c2daacurrentTest
api property - 0cc3627describe
interface more than once in the same test run - cb1221d--timeout
argument in some cases - 1b3abcdafter
test hook would have blocked the test run - 1e11032isVisible
workaround for Safari lower than v12 - c8e34b2The new version differs by 17 commits.
0d8d7b2
1.3.6
b2c2daa
fixed a bug with matching files with filter and empty src_folders setting
25c26f9
Fix #2417 --filter being ignored when --skiptags is set (#2416)
a62b4eb
udpated unit tests to pass in node 8
ce47a88
update unit tests
db7a1f3
some refactoring for retrieving browserVersion
0cc3627
Added some improvements to Junit reporting and currentTest api property
cb1221d
Fixed a problem with running the same test with describe interface more than once
1b3abcd
fixed a problem with global --timeout argument
1e11032
Fixed a problem where the after hook was blocking the queue if an error was thrown
abaaaf8
Fixed reporting of unknown api assertions
8b6813a
Added elapsedTime for static assertions and unit tests for junit output
c8e34b2
Check for 'version' as well
eae891b
Apparently nesting is more cognitively complex
c79ad09
Added check for Safari version, and comments to better highlight special cases
There are 17 commits in total.
See the full diff
The devDependency nightwatch was updated from
1.1.10
to1.1.11
.π¨ View failing branch.
This version is covered by your current version range and after updating it in your project the build failed.
nightwatch is a devDependency of this project. It might not break your production code or affect downstream projects, but probably breaks your build or test tools, which may prevent deploying or publishing.
Status Details
- β **ci/circleci: test_node:** CircleCI is running your tests ([Details](https://circleci.com/gh/jsdrupal/drupal-admin-ui/9349?utm_campaign=vcs-integration-link&utm_medium=referral&utm_source=github-build-link)). - β **ci/circleci: test_drupal:** Your tests failed on CircleCI ([Details](https://circleci.com/gh/jsdrupal/drupal-admin-ui/9348?utm_campaign=vcs-integration-link&utm_medium=referral&utm_source=github-build-link)).Commits
The new version differs by 8 commits.
6c72af6
fixed linter
6564776
1.1.11
0f01683
Added support for element commands (e.g. getText) to be used with ES6 await
18c3e04
Fixed an issue with using assert.elementPresent/elementNotPresent in geckodriver
3d384fd
Fixed #2104 - an issue with waitForElement commands being called with a custom message
52d1d0f
improved error handling for when the file cannot be loaded
ae5130f
Fixed #2101 - a problem with loading custom commands located in sub-folders of the initial source folder(s).
770c1a0
- Fixed an issue resulting from calling waitForElement commands when a page object element with a custom output message;
See the full diff
FAQ and help
There is a collection of [frequently asked questions](https://greenkeeper.io/faq.html). If those donβt help, you can always [ask the humans behind Greenkeeper](https://github.com/greenkeeperio/greenkeeper/issues/new).Your Greenkeeper Bot :palm_tree: