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

⬆️ Bump testcafe from 1.13.0 to 1.14.0 #93

Merged
merged 1 commit into from
Apr 12, 2021

Conversation

dependabot[bot]
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github Apr 12, 2021

Bumps testcafe from 1.13.0 to 1.14.0.

Release notes

Sourced from testcafe's releases.

v1.14.0

What’s Changed

v1.14.0-rc.1

What’s Changed

Changelog

Sourced from testcafe's changelog.

v1.14.0 (2021-4-7)

Enhancements

⚙ Scroll Actions ([PR #6066](DevExpress/testcafe#6066))

When TestCafe interacts with elements on the page, it scrolls the page automatically to reach those elements.

This release introduces actions that allow you to scroll webpage elements manually.

  • t.scroll - scrolls the element to a specified position
  • t.scrollBy - scrolls the element by the specified number of pixels
  • t.scrollIntoView - scrolls the element into view

You can use the t.scroll action to scroll an element to a position:

 import { Selector } from 'testcafe';
fixtureScroll Action
.page('http://example.com');
test('Scroll the container', async t => {
const container = Selector('#container');
 await t
     .scroll(container, 'bottomRight')

});

t.scrollBy allows you to scroll an element (or the webpage) by a set amount of pixels. The example below scrolls the webpage 200px up and 500px to the right:

fixture`Scroll Action`
    .page('http://example.com');
test('Scroll the webpage', async t => {
await t
.scrollBy(500, -200)
});

Use t.scrollIntoView to scroll an element into view:

 import { Selector } from 'testcafe';
fixture Scroll Actions
.page http://www.example.com/;
</tr></table>

... (truncated)

Commits
  • ae5681f Bump version (v1.14.0), update saucelabs-connector (v1.0.0) (#6118)
  • 6aeeca4 Bump version (v1.14.0-rc.1) (#6112)
  • aac565a Support Request Mock in compiler service (#6107)
  • 7b71903 `RequestEvent.setMock' method becomes asynchronous (#6102)
  • 0a05997 [docs] Describe how to mock part of response headers (#6089)
  • 514f7ac support request logger in compiler service mode (#6097)
  • f91b2de fix: eliminate rollup warnings about parsing TypeScript code (#6093)
  • 38fa4d9 Use rule.id in request mock (#6094)
  • 20d1855 fix: error messages should have correct diffs (#6071)
  • e1a53bf Improve data serialization between processes (main and service) (#6088)
  • 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)

@dependabot dependabot bot added the ⬆️⬇️ dependencies Pull requests that update a dependency file label Apr 12, 2021
@Robdel12 Robdel12 merged commit 3640f4b into master Apr 12, 2021
@Robdel12 Robdel12 deleted the dependabot/npm_and_yarn/testcafe-1.14.0 branch April 12, 2021 15:15
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