Alex

Results 951 comments of Alex

@Ventzy , I somehow missed your comment back then. Please send a PR with proposed solution. Not sure why you need to use both interval and timer at the same...

I guess you can show error output example of your code compared to what it would be for @stof recommended approach. That should help @stof decide if your approach would...

In real browser you can't set cookie before visiting the page, because the cookie domain must match to page you set them on for page itself to recognize them. Why...

Also documentation http://mink.behat.org/en/latest/guides/session.html says that before you do anything you must visit a page first.

> So my questions are No matter which approach you decide to implement keep in mind, that new behavior must be implemented in all other Mink drivers as well.

Maybe you can create wrapper page or pass some flag to a page, that when used will set cookie and redirect to correct page.

@eugef , aren't you trying to set session id in that cookie? I know there is an approach to create session and then inject it's ID in cookie so user...

This is relevant code line: https://github.com/minkphp/MinkZombieDriver/blob/master/src/NodeJS/Server.php#L86 Basically specifying `$options` array during `ZombieServer` class object creation would allow to set any of Zombie supported options, including proxy. Actual supported options at...

Are you using IO.JS to run Zombie? The Zombie 4.x+ require IO.JS to work and would crash with strange errors when executed on NodeJS. If you're running IO.JS, then please...

On the Node 5.4.1 and Zombie 4.2.1 the following snippet works fine for me: ``` php $session = $this->getSession(); $session->visit('https://test.iconneqt.nl/admin/index.php'); $page = $session->getPage(); echo $page->getHtml(); ``` Due the nature of...