Thomas Landauer
Thomas Landauer
When excluding certain HTTP status codes (e.g. 404) from a handler, it would be nice to be able to set up another handler that works as exact complement, namely logging...
This is the only (minor) left-over of https://github.com/sj26/mailcatcher/issues/436 I'm suggesting to display the version in the web interface after the name (top left corner): "MailCatcher 0.8.1" instead of "MailCatcher". But...
I don't really know what I'm doing here, so this is probably not the right way to fix it! Anyway - when following https://codeception.com/quickstart, I'm getting v1.0.0 of module-phpbrowser and...
I'm trying to use `selectOption()` with `array('text' => 'Windows')` as its second argument, as shown here: http://codeception.com/docs/modules/WebDriver#selectOption Here's a sample HTML: ```html One Two ``` And this code is not...
I've set up an environment (https://codeception.com/docs/07-AdvancedUsage#Environments) for chrome like this: ```yaml modules: enabled: - WebDriver: browser: firefox path: '' # Required for Firefox to start at all env: chrome: modules:...
Instead of a green ✔ and a red ✖, here's what the output looks like for me:  These characters are already around since Codeception 2.4 https://github.com/Codeception/Codeception/blob/2.4/src/Codeception/Subscriber/Console.php#L104 - so my...
With this being my HTML: ```html var foo = ''; ``` ... these are failing in a functional test: ```php $I->seeElement(['css' => 'div']); $I->seeNumberOfElements(['css' => 'div'], 1); ``` It does...
I ran the entire suite (`vendor/bin/codecept run unit,functional`) and some tests failed. Then I deleted one of them (i.e. the entire file), and ran the entire suite again, as before....
When submitting a form as shown in the example at http://codeception.com/docs/modules/PhpBrowser#submitForm ```php $I->submitForm( '#userForm', [ 'user' => [ 'login' => 'Davert', 'password' => '123456', 'agree' => true ] ], 'submitButton'...
Just noticed that `wantTo()` (and probably similar functions like `expect()`, `comment()` etc.) are not really documented - the only occurrence I found is https://codeception.com/docs/06-ReusingTestCode#What-are-Actors What's the purpose of all these?...