Michael Bodnarchuk
Michael Bodnarchuk
Thanks to the great tutorials! I noticed a mistake in your code https://github.com/daylerees/dependency-injection-example/blob/master/part-9/tests/SocialFeedTest.php#L41 ``` $this->assertEquals($v[0], 'foo'); $this->assertEquals($v[1], 'bar'); $this->assertEquals($v[2], 'baz'); $this->assertEquals($v[3], 'boo'); $this->assertEquals($v[4], 'bop'); ``` In PHPUnit (as well as...
[CodeceptJS supports Puppeteer](https://codecept.io/puppeteer) as an engine for tests since December 2017. Allows to write tests in a flexible DSL and run them via Puppeteer.
PHPCI does not do (yet) > Virtualised testing. (In progress) > Multiple PHP-version tests. (In progress) I have proposal and proof of concept for virtualizing PHP test environments with Docker...
Locator may fail at https://github.com/Codeception/Codeception/blob/2.2.12/src/Codeception/Util/Locator.php#L214 while trying to detect a valid XPath. THis can be improved. For PHP7 a \Throwable can be caught at this point. Also docs `isXPath` docs...
## Motivation/Description of the PR - Description of this PR, which problem it solves - Resolves #issueId (if applicable). Applicable helpers: - [ ] WebDriver - [ ] Puppeteer -...
I have column `tags`: ``` t.string "tags", array: true, null: false ``` I created it as array of strings: ```ruby def up execute "ALTER TABLE analytics_tests ADD COLUMN tags Array(String)"...
When running tests in server mode more and more browsers are opened and never closed
It would be nice if we could switch between Headless & Headful mode with 1 click This icon shows that tests are running in Headless mode:  This is how...
We need to rethink UI to make it better for users Application should be used to: * execute all tests in project * execute a specific test in project *...