Boris Osipov
Boris Osipov
Hi @ccwilkins It is not a bug. Reporter was initially designed to split nested steps. It made reporter implementation simpler. I am not sure our old allure-commons supports nested suites...
>The hierarchy tells the story being told in the test (suite). yes that's why nested suite contains parent suite name in the nested suite name. FMPOV it is save all...
And when I say it is trade off - this solution was implemented 5+ years ago and maybe now it is good time to review this decision and change it....
>I did now was just to add the scrollIntoView before the click. To be honest I am not happy about this. You add unnecessary scroll for hundreds of thousands users...
I guees we use `findElementS()` because it doesn't care about implicitWait timeout. If we change to `findElement()` every find call for unexisting element will cost users implicitWait time - that...
We would appreciate any help on this. Have a look at our [contributing guidelines](https://github.com/webdriverio/webdriverio/blob/master/CONTRIBUTING.md?rgh-link-date=2022-03-10T10%3A50%3A05Z) and reach out if you have any questions. Cheers!
@igor-lantushenko The problem[ is here ](https://github.com/webdriverio/webdriverio/blob/main/packages/wdio-junit-reporter/src/index.ts#L256) - `this.suites` contains incorrect data - the very n * n results. `this.suites` comes and changes in [base reporter class](https://github.com/webdriverio/webdriverio/blob/main/packages/wdio-reporter/src/index.ts#L19).
@christian-bromann just react sample app from github search ``` describe('react', () => { it('clear value fails for react app', async () => { await browser.url("https://demo.rmuif.com/"); await browser.$("span=Sign up").click(); const input...
How your cli command looks like? пт, 15 июн. 2018 г. в 13:27, davidrova : > Hi, > > I'm using webdriverio v4.12.0, trying to filter tags using the command...
I didn't go deep into this issue but understood what was happening and may suggest workaround run CUCUMBER_TAGS="@comments" ./node_modules/.bin/wdio --env dev ./e2e/wdio.conf.js and replace in your wdio config `tags: []`...