chai-webdriverio icon indicating copy to clipboard operation
chai-webdriverio copied to clipboard

Results 11 chai-webdriverio issues
Sort by recently updated
recently updated
newest added

Add an assertion for checking that element class equals/matches a value: ```js expect('.element').to.have.class(String|Regex) ``` Currently, can be achieved via `attribute` assertion (implemented in #53)

These lines are always executed for `defaultWaitTime` ```js expect('#foo').to.not.have.text('bar') expect('#foo').to.not.have.value('bar') ``` Because of these lines: https://github.com/marcodejongh/chai-webdriverio/blob/master/src/assertions/value.js#L29 https://github.com/marcodejongh/chai-webdriverio/blob/master/src/assertions/text.js#L30

Having trouble with this gem, and need to make some fixes? Wish you had a cool open-source project to brag about? Now you can! chai-webdriverio needs a new maintainer (maybe...

help wanted

Build is failing with `yarn` when using with `[email protected]` since this module was expecting `4.0.x` due to the use of `~` in `~4.0.1` in its `peerDependencies`. But `chai` `4.1.2` should...

Is it possible to pass a selected element to expect, rather than a string selector? Is there any way I could use it like this? ``` const element = $('.css-selector')...

## Version 10 of Node.js (code name Dubnium) has been released! 🎊 To see what happens to your code in Node.js 10, Greenkeeper has created a branch with the following...

greenkeeper

New to both webdriverio and chai-webdriverio. I am using something like ``` var linkToArticleSelector = "a[href='link-to-article']" expect(linkToArticleSelector).to.be.there(); ``` While this works as expected, is there a way to deal with...

`chai-webdriver` uses a `.dom` flag to start the assertion chain, like this: ``` expect(...).dom.to.be.there ``` This library was originally designed without that, because it's a somewhat awkward token, syntactically. However,...

The Peer Dependency on chai is way too strict (~4.0.1) In trying to fix this, I ran into unmet peer dependencies in the devDependencies graph, stemming from `eslint-config-airbnb`. I replaced...

It might be nice to give the regex assertion its own name instead of relying on argument type to choose how to match. This would be consistent with `chai-webdriver` and...