Josh Patsey

Results 2 issues of Josh Patsey

```typescript await browser.url("https://the-internet.herokuapp.com/checkboxes"); const checkboxes = await $$('input[type="checkbox"]').getElements(); console.log(`Length before: ${checkboxes.length}`); await expect(checkboxes).toBeElementsArrayOfSize(2); const firstCheckbox = checkboxes[0]; console.log(`Length after: ${checkboxes.length}`); await browser.pause(2000); console.log(`Length after a pause: ${checkboxes.length}`); await expect(checkboxes).toBeElementsArrayOfSize(2); console.log(`Checkbox:...

help wanted
Bug 🐛

Should fix https://github.com/webdriverio-community/wdio-video-reporter/issues/453 * rewrote cucumber demo, since existing demo didn't work anymore * Added hooks that cucumber framework uses * External lib updates