Charlie Kurban

Results 12 comments of Charlie Kurban

Whats the ETA for this?

@BorisOsipov In earlier version of the `wdio-cucumber-framework` I used to use below written line : `let cucumberTags = browser.options.cucumberOpts.tagExpression.filter((tags) => {return tags.startsWith('@')});` After upgrading my `wdio-cucumber-framework` to version 2.2.8 -...

@BorisOsipov I used `cucumber-tag-expressions` and it is failing when I have: `tagExpression: '@uk and not @defect',` with output : ``` evaluate=function (variables) { return leftExpr.evaluate(variables) && rightExpr.evaluate(variables) }, toString=function ()...

It seems to not able to handle `and` and `not` operators. Is there any way to `skip` the `negate condition such as `not` as some of my scenarios have `@defect`...

@BorisOsipov Here how I use it : ``` const tagParser = new TagExpressionParser(); logger.info(' ===== EXPRESSION =====', browser.options.cucumberOpts.tagExpression); const expressionNode = tagParser.parse(browser.options.cucumberOpts.tagExpression); logger.info(' ===== TAGS =====', expressionNode); const featureFilesHaveTags =...

Well, I am trying to read all `tags` and assign the right value to my next statement: ``` cucumberTags.forEach((tag) => { switch (tag.toString()) { case '@spb': userCategory = constants.userCategory.spb; break;...

Works like a charm !!!!! Thanks @BorisOsipov

@BorisOsipov me again, I know it is not related to this thread and if needed i will create separate issue but when I am trying to set my test data...

@BorisOsipov I am trying to set test data to `global.envconfig` object and when I am trying to use any data from `envconfig` such as `envConfig.url.webservicesEndpoint` it throws `ERROR: Cannot read...

@BorisOsipov I am keep getting this error: ``` **ERROR: envConfig is not defined** chrome.68_0 Reference at Object. (/Users/xxx/dev/xxx/test/api/xxxx/ws410.js:7:57) at Module._compile (module.js:653:30) at Object.Module._extensions..js (module.js:664:10) at Module.load (module.js:566:32) at tryModuleLoad (module.js:506:12)...