Assertion
The WDIO testrunner comes with a built in assertion library that allows you to make powerful assertions on various aspects of the browser or elements within your (web) application. It extends Jests Matchers functionality with additional, for e2e testing optimized, matchers, e.g.:
or
For the full list, see the expect API doc.
#
Migrating from ChaiChai and expect-webdriverio can coexist, and with some minor adjustments a smooth transition to expect-webdriverio can be achieved. If you've upgraded to wdio v6 then by default you will have access to all the assertions from expect-webdriverio out of the box. This means that globally wherever you use expect
you would call an expect-webdriverio assertion. That is, unless you have explicitly overriden the global expect
to use Chai. In this case you would not have access to any of the expect-webdriverio assertions without explicitly importing the expect-webdriverio package where you need it.
This guide will show examples of how to migrate from Chai if it has been overridden locally and how to migrate from Chai if it has been overridden globally.
#
LocalAssume Chai was imported explicitly in a file, e.g.:
To migrate this code remove the Chai import and use the new expect-webdriverio assertion method toHaveUrl
instead:
If you wanted to use both Chai and expect-webdriverio in the same file you would keep the Chai import and expect
would default to the expect-webdriverio assertion, e.g.:
#
GlobalAssume expect
was globally overridden to use Chai. In order to use expect-webdriverio assertions we need to globally set a variable in the "before" hook, e.g.:
Now Chai and expect-webdriverio can be used alongside each other. In your code you would use Chai and expect-webdriverio assertions as follows, e.g.:
To migrate you would slowly move each Chai assertion over to expect-webdriverio. Once all Chai assertions have been replaced thoughout the code base the "before" hook can be deleted. A global find and replace to replace all instances of wdioExpect
to expect
will then finish off the migration.