Robert Freigang

Results 45 comments of Robert Freigang

> Any examples? * all extends in classes relying on PHPUnit classes => would solve this with an abstract class; * https://github.com/minkphp/phpunit-mink/blob/68b94432ac12ad4f714ef540037396aeb369e230/library/aik099/PHPUnit/Event/TestEndedEvent.php#L36 https://github.com/minkphp/phpunit-mink/blob/68b94432ac12ad4f714ef540037396aeb369e230/library/aik099/PHPUnit/TestSuite/AbstractTestSuite.php#L95 https://github.com/minkphp/phpunit-mink/blob/68b94432ac12ad4f714ef540037396aeb369e230/library/aik099/PHPUnit/TestSuite/AbstractTestSuite.php#L95 https://github.com/minkphp/phpunit-mink/blob/68b94432ac12ad4f714ef540037396aeb369e230/library/aik099/PHPUnit/TestSuite/BrowserTestSuite.php#L57 https://github.com/minkphp/phpunit-mink/blob/68b94432ac12ad4f714ef540037396aeb369e230/tests/aik099/PHPUnit/BrowserTestCaseTest.php#L302 etc. ```PHP if (...

I will give it a try after #94 has finished build and is merged. This will result in another PR with bump PHPUnit version to 4.8.35+ or 5.4.3+. --- >...

Yeah. Sorry, that it's an optional feature is clear to me. I meant: Why can't I set tunnel id not via desired capabilities or something else? It feels a little...

Thanks for your issue. I am currently at holidays. So I will have a deeper look at it next week.

@platosinski Have a look at ```v1.1.1``` by simply doing a ```composer update --with-dependencies robertfausk/behat-panther-extension``` :balloon: And sorry for long delay :pray:

Hi @QuestionDevelopment! Have a look at the docs: https://github.com/symfony/panther#passing-arguments-to-chromedriver The arguments for the bin are taken from the ```$managerOptions``` parameter: ```PHP // minimal example when using trait self::createPantherClient([], [], ['chromedriver_arguments'...

Perhaps it is enough to support ```[email protected]:xxx/yyy.git``` as repository format cause when I execute ```git clone [email protected]:xxx/yyy.git``` on my redmine server as redmine user it is working fine.

Any updates on this? Do you need a PR? If yes, do you have any hints where to start and/or how instascan interface should behave?

What about using [```robertfausk/mink-panther-driver```](https://github.com/robertfausk/mink-panther-driver) maybe with [```behat-panther-extension```](https://github.com/robertfausk/behat-panther-extension)?:)

There is also a PR for this: #292 @miedzikd This problem occures based on implementation of used ```Behat\Mink\Driver\DriverInterface```. E.g. https://github.com/minkphp/MinkSelenium2Driver/blob/36c33585f62ffe1d791c5db838d1457522b3b382/src/Selenium2Driver.php#L485 has no check if ```$this->wdSession``` is set or startet. ```...