Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore(deps-dev): bump testcafe from 1.8.6 to 1.9.1 #271

Merged
merged 1 commit into from
Sep 3, 2020

Conversation

dependabot[bot]
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github Sep 3, 2020

Bumps testcafe from 1.8.6 to 1.9.1.

Release notes

Sourced from testcafe's releases.

v1.9.1

What’s Changed

v1.9.1-rc.1

What’s Changed

v1.9.0

What’s Changed

v1.9.0-rc.2

What’s Changed

v1.9.0-rc.1

What’s Changed

Changelog

Sourced from testcafe's changelog.

v1.9.1 (2020-8-12)

Bug Fixes

v1.9.0 (2020-8-6)

Enhancements

🌟 Multi Window Support (Beta)

TestCafe can now automate user actions in multiple windows. You can switch between open windows during the test. Make edits in one window and check that the other window's content changes dynamically to reflect these modifications.

Testing in multiple windows

When the main window opens a child window, TestCafe automatically switches to this new window and continues test actions there:

import { Selector } from 'testcafe';
fixture Login page
.page('https://login.wrike.com/login/');
const googleButton = Selector('div.login-panel-footer__login-with > button');
test('Login via Google', async t => {
await t
.click(googleButton)
.typeText('input[type=email]', 'This text will be entered inside the pop-up');
});

You can use the t.openWindow method to open a child window in test code:

import { Selector, ClientFunction } from 'testcafe';
fixture Test page
.page('https://devexpress.github.io/testcafe/example/');
test('Open a new window', async t => {
await t.openWindow('http://example.com');
const url = await t.eval(() => document.documentURI);
await t.expect(url).eql('http://example.com');

});

Commits

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)

@dependabot dependabot bot added the dependencies Pull requests that update a dependency file label Sep 3, 2020
@mantariksh mantariksh merged commit 56d8565 into develop Sep 3, 2020
@dependabot dependabot bot deleted the dependabot/npm_and_yarn/testcafe-1.9.1 branch September 3, 2020 08:30
@arshadali172 arshadali172 restored the dependabot/npm_and_yarn/testcafe-1.9.1 branch September 9, 2020 07:09
@karrui karrui deleted the dependabot/npm_and_yarn/testcafe-1.9.1 branch November 18, 2020 07:25
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.

1 participant