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

Update webdriverio monorepo (major) #3434

Merged
merged 1 commit into from
Feb 10, 2021

Conversation

renovate[bot]
Copy link
Contributor

@renovate renovate bot commented Feb 9, 2021

WhiteSource Renovate

This PR contains the following updates:

Package Change Age Adoption Passing Confidence
@wdio/browserstack-service 6.12.1 -> 7.0.1 age adoption passing confidence
@wdio/cli 6.12.1 -> 7.0.1 age adoption passing confidence
@wdio/local-runner 6.12.1 -> 7.0.1 age adoption passing confidence
@wdio/mocha-framework 6.11.0 -> 7.0.0 age adoption passing confidence
@wdio/spec-reporter 6.11.0 -> 7.0.1 age adoption passing confidence
@wdio/sync 6.11.0 -> 7.0.1 age adoption passing confidence
webdriverio (source) 6.12.1 -> 7.0.1 age adoption passing confidence

Release Notes

webdriverio/webdriverio

v7.0.1

Compare Source

💅 Polish
🏠 Internal
  • wdio-allure-reporter, wdio-appium-service, wdio-applitools-service, wdio-browserstack-service, wdio-concise-reporter, wdio-crossbrowsertesting-service, wdio-cucumber-framework, wdio-devtools-service, wdio-dot-reporter, wdio-firefox-profile-service, wdio-jasmine-framework, wdio-junit-reporter, wdio-local-runner, wdio-sauce-service, wdio-selenium-standalone-service, wdio-spec-reporter, wdio-sumologic-reporter, wdio-testingbot-service
Committers: 2

v7.0.0

Compare Source

💥 Breaking Change
  • #​6302 TypeScript Rewrite

    • As we have moved the complete code base to TypeScript we have rewritten the way how WebdriverIO provides type definitions to you. This has been more or less and internal change that should only affect users using TypeScript and having custom command definitions. In order to have proper type support now you need to add webdriverio/sync to your list of types, e.g.:

      // tsconfig.json
      "types": [
        "node",
        "webdriverio/sync",
        "@​wdio/mocha-framework"
      ],

      Custom commands can now be added like this:

      declare global {
          namespace WebdriverIO {
              interface Browser {
                  browserCustomCommand: (arg: number) => void
              }
          }
      }
      browser.browserCustomCommand(42)

      We do not recommend to specify webdriverio or @wdio/sync in there anymore. For more information visit our updated docs on TypeScript Integration.

    • If you use WebdriverIO in multiremote mode to get proper typing you should use the multiremote global variable

    • Alongside with this change we also equipped the testrunner to auto-compile your configuration if TypeScript is detected, this allows to leverage type safety in your WDIO configuration without any additional setup (big thanks for this contribution goes to @​r4j4h)

    • It is required to have TypeScript v4 or higher

  • #​6309 Cucumber Framework update to v7

    • We have updated our Cucumber integration to use Cucumber v7
    • To provide proper type safety we updated the Cucumber hooks to match original Cucumber types
  • #​6276 Google Lighthouse Updates

    • We have updated Google Lighthouse to support the latest performance metrics introduced by Google Lighthouse v7

    • There are no default environment changes when running performance tests anymore. If you want to emulate a mobile user (which is a recommended practice) you have to pass these information when running enablePerformanceAudits, e.g.:

      browser.emulateDevice('iPhone X')
      browser.enablePerformanceAudits({
          networkThrottling: 'Regular 3G',
          cpuThrottling: 4,
          cacheEnabled: false,
          formFactor: 'mobile'
      })
    • We added formFactor to the EnablePerformanceAuditsOptions as it has been added to Lighthouse v7 as well, it tweaks the performance results based on which environment you run your tests in to give certain performance factors more weight

    • We added a new command test PWA apps based on Google Lighthouse audits, e.g.:

      const result = browser.checkPWA()
      expect(result.passed).toBe(true)

      Checks the following PWA criterias:

      We have purposely not added the complete set of audits as they require data that can only be captured through additional automation commands. These could interfer with further test processes and skew results and create flakiness which would make integrating these commands difficult.

  • #​3407 Automatically run worker with Babel if setup

    • In order to improve the onboarding experience we will now automatically compile the configuration and your test files using Babel or TypeScript
    • This will allow you to have import statements in your config file without any additional setup
  • #​6054 Validate W3C Capabilities

    • With the WebDriver protocol being a recommended standard since 2018 we want to move away from usage of outdated capability sets that might confuse WebDriver endpoints
    • This breaking change will throw an error if we detect invalid capabilities when user use a mixture of clear W3C capabilities and outdated JSONWireProtocol capabilities, e.g.:
      capabilities: {
          browserName: 'Chrome',
          platform: 'Windows 10', // invalid JSONWire Protocol capability
          'goog:chromeOptions': { ... }
      }
      will fail this check because vendor capabilities have been used which were introduced by WebDriver while at the same time a JSONWireProtocol capability (platform) has been used too
  • #​6236 Update fibers to v5 and drop Node.js support for v10

    • We recommend to continue to use Node.js v12 and higher)
🚀 New Feature
  • #​6311 Get Test Coverage Report
    • The @wdio/devtools-service now offers to capture the code coverage of your JavaScript application files. This can help you to identify whether you should write more e2e tests or not. To enable the feature you have to enable it by setting the coverageReporter option for the service:
      // wdio.conf.js
      services: [
          ['devtools' {
              coverageReporter: {
                  enable: true,
                  type: 'html',
                  logDir: __dirname + '/coverage'
              }
          }]
      ]
    • You can also assert the code coverage within your tests using the new getCoverageReport command, e.g.:
      const coverage = browser.getCoverageReport()
      expect(coverage.lines.total).toBeAbove(0.9)
      expect(coverage.statements.total).toBeAbove(0.9)
      expect(coverage.functions.total).toBeAbove(0.9)
      expect(coverage.branches.total).toBeAbove(0.9)
🏠 Internal
  • We have renamed our main development branch from master to main
    • As the WebdriverIO community is committed to be an inclusive community we join the global effort to remove all unnecessary references to slavery and other non-inclusive terms.
💅 Polish
  • #​6392 Add Sauce Labs sharable report links in @wdio/spec-reporter
📝 Documentation
  • New Website Design and Documentation Overhaul
    • The project maintainers are constantly striving to provide better documentation and clear descriptions on commands and WebdriverIO functionality. We the v7 release we now also publish an overhauled website design and re-organisation of our docs.
    • You will continue to find the old docs in their respective places:

Renovate configuration

📅 Schedule: At any time (no schedule defined).

🚦 Automerge: Disabled by config. Please merge this manually once you are satisfied.

♻️ Rebasing: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox.

👻 Immortal: This PR will be recreated if closed unmerged. Get config help if that's undesired.


  • If you want to rebase/retry this PR, check this box

This PR has been generated by WhiteSource Renovate. View repository job log here.

@renovate renovate bot added the dependencies label Feb 9, 2021
@renovate renovate bot force-pushed the renovate/major-webdriverio-monorepo branch from d1182fd to 55e0580 Compare February 9, 2021 21:05
@renovate renovate bot changed the title Update webdriverio monorepo to v7 (major) Update webdriverio monorepo (major) Feb 9, 2021
@renovate renovate bot force-pushed the renovate/major-webdriverio-monorepo branch from 55e0580 to bdf9439 Compare February 10, 2021 10:02
@gjvoosten gjvoosten merged commit 42b2ed2 into candidate Feb 10, 2021
@gjvoosten gjvoosten deleted the renovate/major-webdriverio-monorepo branch February 10, 2021 11:18
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

Successfully merging this pull request may close these issues.

2 participants