Gintautas Miselis

Results 169 comments of Gintautas Miselis

Does it work as expected if you change your ~test~ context class to `@Then I should see: ""` ?

I won't fix this issue, but if anyone wants to try I will give a few hints. Gherkin support is all about pattern matching. Codeception only supports steps with single...

`amOnPage` and `sendPOST` are not documented in the same place. `sendPOST` belongs to REST module, `amOnPage` belongs to WebDriver, PhpBrowser or one of framework modules. Also read comments in https://github.com/Codeception/module-rest/issues/4

sendPOST isn't mentioned at all in https://codeception.com/docs/modules/WebDriver Are you asking for "Warning! Methods not mentioned on this page can't inspect current page and vice verse."?

It must have been some misunderstanding, I retested setting `path_coverage: true` in codeception.yml and it works.

Ideas for easy to get to places are welcome. The list of included packages can be see in https://github.com/Codeception/codeception.github.com/blob/master/package/composer.json Currently it includes the following modules: ``` "codeception/module-amqp": "*", "codeception/module-apc": "*",...

Have you tried to add `die('it works');` to bootstrap.php and see if it really works? I think that the code which uses constants runs before bootstrap.php.

I looked into this and I think that the problem is in the order of execution. WPLoader loads plugins in `initialize` phase, which happens before `SUITE_INIT` event which loads suite...

The easiest workaround is to enable bootstrap file in codeception.yaml file, it will be loaded before anything else.