Ali

Results 10 comments of Ali

> @amedveshchek oh my... I had temporarily commented that out, and now was debugging for 30 minutes why it wasn't working hehe.. Works with permissions and checkout v3 Where are...

@christian-bromann Not sure I understand the question. All you need to do is create a WDIO project that is on V8 and if there are two folders named similiar `ess`...

@christian-bromann It looks like the real problem is that it isn't respecting my suites. Am I calling them wrong? Suite: ``` 'full-validation-absencetracker': [ `${__dirname}/specs/apis/**/*.spec.js`, `${__dirname}/specs/at-admin/*.spec.js`, `${__dirname}/specs/configurations/**/*.spec.js`, `${__dirname}/specs/ess/**/*.spec.js`, `${__dirname}/specs/misc/**/*.spec.js`, ], ```...

@christian-bromann It's hard to abstract it so I don't have to give you full context. I am possibly doing that. I am calling a script like this: I have a...

@christian-bromann My test is doing that (this is running another suite called `apis`) ![image](https://github.com/webdriverio/webdriverio/assets/2396250/76f60fed-e6eb-4bb7-99b8-97399c6b6960) Which only has `31 test cases` but it runs my entire set of test cases not...

@christian-bromann So I created a small project for you and think I found the root cause. In order to give the capability to run both the Suite and a Spec...

@christian-bromann https://github.com/awhisler/wdioTest Command: `npm run test:endtoend -- --suite home --spec` (runs both specs) Command: `npm run test:endtoend -- --suite home` (runs just the one spec) But we have the --spec...

@christian-bromann Thank you. Is there any other way to call it that I could use temporarily?

Even after I figured out how to call the selectors, this still does not work. This is the reference when Im trying to click the config dropdown: ![image](https://github.com/garris/BackstopJS/assets/2396250/7eaf7b68-1e67-4167-bed1-543cbcd1cbdc)

This was happening for me as well and I used this command to fix it: `npx playwright install chromium` or `npx playwright install firefox` - then `backstop test` worked