Visual-Regression-Tracker / agent-codeceptjs

3 stars 2 forks source link

Bump playwright from 1.6.2 to 1.14.0 #41

Closed dependabot[bot] closed 3 years ago

dependabot[bot] commented 3 years ago

Bumps playwright from 1.6.2 to 1.14.0.

Release notes

Sourced from playwright's releases.

v1.14.0

🎭 Playwright Library

⚡️ New "strict" mode

Selector ambiguity is a common problem in automation testing. "strict" mode ensures that your selector points to a single element and throws otherwise.

Pass strict: true into your action calls to opt in.

// This will throw if you have more than one button!
await page.click('button', { strict: true });

📍 New Locators API

Locator represents a view to the element(s) on the page. It captures the logic sufficient to retrieve the element at any given moment.

The difference between the Locator and ElementHandle is that the latter points to a particular element, while Locator captures the logic of how to retrieve that element.

Also, locators are "strict" by default!

const locator = page.locator('button');
await locator.click();

Learn more in the documentation.

🧩 Experimental React and Vue selector engines

React and Vue selectors allow selecting elements by its component name and/or property values. The syntax is very similar to attribute selectors and supports all attribute selector operators.

await page.click('_react=SubmitButton[enabled=true]');
await page.click('_vue=submit-button[enabled=true]');

Learn more in the react selectors documentation and the vue selectors documentation.

✨ New nth and visible selector engines

  • nth selector engine is equivalent to the :nth-match pseudo class, but could be combined with other selector engines.
  • visible selector engine is equivalent to the :visible pseudo class, but could be combined with other selector engines.
// select the first button among all buttons
await button.click('button >> nth=0');
// or if you are using locators, you can use first(), nth() and last()
</tr></table> 

... (truncated)

Commits
  • b9a1823 cherry-pick(release-1.14): show stdio for failures in terminal reporters (#8187)
  • cba2f05 cherry-pick(release-1.14): make sure we always teardown all fixtures (#8171)
  • 4bdc06c cherry-pick(release-1.14): fix electron tests (#8170)
  • c1d3ff2 cherry-pick(release-1.14): restore action error icon (#8165)
  • 8977835 fix(docs): missing reference type (#8160)
  • 551cc08 chore: mark v1.14.0 (#8149)
  • 41770bf feat(webkit): response interception after redirects (#8017)
  • 156c5d4 devops: use win canary to roll chromium
  • 1d4e2fe feat(nth): make nth and visible selectors public (#8142)
  • aaf565c chore: update webkit version to 15.0 (#8143)
  • 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)