Skip to content

Bump nightwatch from 1.3.6 to 2.1.0#101

Closed
dependabot[bot] wants to merge 1 commit intomainfrom
dependabot/npm_and_yarn/nightwatch-2.1.0
Closed

Bump nightwatch from 1.3.6 to 2.1.0#101
dependabot[bot] wants to merge 1 commit intomainfrom
dependabot/npm_and_yarn/nightwatch-2.1.0

Conversation

@dependabot
Copy link

@dependabot dependabot bot commented on behalf of github Apr 11, 2022

Bumps nightwatch from 1.3.6 to 2.1.0.

Release notes

Sourced from nightwatch's releases.

v2.1.0

The Nightwatch 2.1 release adds a few important fixes and several improvements, including upgrade to Selenium 4.1.1. Here's the full list:

Improvements

describe('sample with relative locators', function () {
  before(browser => browser.navigateTo('https://archive.org/account/login'));
it('locates password input', function (browser) {
const passwordElement = locateWith(By.tagName('input')).below(By.css('input[type=email]'));
browser
  .waitForElementVisible(passwordElement)
  .expect.element(passwordElement).to.be.an('input');
browser.expect.element(passwordElement).attribute('type').equal('password');

});
});

  • New error stack trace output which parses and highlights the source code line – #3071

Example:

image

  • Set network emulation settings in Chrome/Edge with the .setNetworkConditions() command (#2996)

browser.setNetworkConditions({ 
  offline: false, 
  latency: 5, // Additional latency (ms). 
  download_throughput: 500 * 1024, // Maximal aggregated download throughput. 
  upload_throughput: 500 * 1024 // Maximal aggregated upload throughput. 
});
  • Automate the input of basic auth credentials with the .registerBasicAuth() command (Chrome/Edge) (#3116)

browser
     .registerBasicAuth('test-username', 'test-password')
     .navigateTo('http://browserspy.dk/password-ok.php');

Important Fixes

  • Fixed #3079 – unable to clear element in setValue command

... (truncated)

Commits
  • 34d36f7 2.1.0
  • ce70a85 Fixed #3124 - multiple terminal windows opening when running in chrome on win...
  • 61fea93 Fixed #3086 - 'RangeError: Maximum call stack size exceeded' when requiring u...
  • 81b3e24 update tests for testStackTrace (#3126)
  • a8d4d19 updated tests
  • 9a1603c updated stack trace tests
  • 96ad018 fixed linter
  • 2d30d31 Added support for working with Selenium relative locators and some improvemen...
  • cdf0705 fix mocha exitCode issue nightwatchjs#3001 (#3039)
  • 8eed942 fix failing tests (#3120)
  • Additional commits viewable in compare view

Dependabot compatibility score

Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting @dependabot rebase.


Dependabot commands and options

You can trigger Dependabot actions by commenting on this PR:

  • @dependabot rebase will rebase this PR
  • @dependabot recreate will recreate this PR, overwriting any edits that have been made to it
  • @dependabot merge will merge this PR after your CI passes on it
  • @dependabot squash and merge will squash and merge this PR after your CI passes on it
  • @dependabot cancel merge will cancel a previously requested merge and block automerging
  • @dependabot reopen will reopen this PR if it is closed
  • @dependabot close will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually
  • @dependabot ignore this major version will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)
  • @dependabot ignore this minor version will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)
  • @dependabot ignore this dependency will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)

Bumps [nightwatch](https://github.com/nightwatchjs/nightwatch) from 1.3.6 to 2.1.0.
- [Release notes](https://github.com/nightwatchjs/nightwatch/releases)
- [Commits](nightwatchjs/nightwatch@v1.3.6...v2.1.0)

---
updated-dependencies:
- dependency-name: nightwatch
  dependency-type: direct:development
  update-type: version-update:semver-major
...

Signed-off-by: dependabot[bot] <support@github.com>
@dependabot dependabot bot added the dependencies Pull requests that update a dependency file label Apr 11, 2022
@dependabot @github
Copy link
Author

dependabot bot commented on behalf of github Apr 25, 2022

Superseded by #104.

@dependabot dependabot bot closed this Apr 25, 2022
@dependabot dependabot bot deleted the dependabot/npm_and_yarn/nightwatch-2.1.0 branch April 25, 2022 10:13
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

dependencies Pull requests that update a dependency file

Projects

None yet

Development

Successfully merging this pull request may close these issues.

0 participants