Ondřej Machulda
Ondřej Machulda
Hi @q-jack , this is a nice idea! This is so far not implemented, but I plan some changes in output for Steward 3.0, including custom ResultPrinter. And printing assertions...
Kind of a related to https://github.com/jenkinsci/jenkins/pull/904.
Maybe the value passed to PHPUnit --filter option could *always* be prefixed with something like `::`, to make sure the filtering is only applied to test methods, not test classes....
For comparison phpunit startup time on the same machine on Windows: ``` $ time ./vendor/bin/phpunit real 0m0,723s user 0m0,020s sys 0m0,020s ```
So I managed to do profiling on Windows. This is the result: https://blackfire.io/profiles/01d6b9cc-4b43-4c07-928b-100508d6baae/graph. The issue is in `searchListeners()` method of `ListenerInstantiator` class - obviously the way we do autodiscovery of...
The root cause seems to be some issue with creating of the screenshot (the command `$this->execute(DriverCommand::SCREENSHOT)` returns null, so that the screenshot cannot be converted from base64 and saved). Could...
Replaced by #996 - have a look there please. Thanks!
Hi, the `elementToBeClickable` is actually only shortcut to ensure the element is present, visible and not disabled (like disabled input button). There is AFAIK no simple way in Selenium/WebDriver how...
Well, you didn't provide the error you got, so we don't know what exactly is happening 🙂. Unfortunately there is no native WebDriver method which will tell whether something is...
@andrewnicols However, this is not part of W3C, but in Java bindings this is polyfilled using javascript snippet: https://github.com/SeleniumHQ/selenium/blob/master/java/client/src/org/openqa/selenium/remote/codec/w3c/W3CHttpCommandCodec.java#L233-L236 We already use something similar for submit (submit is also not...