You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Sep 6, 2021. It is now read-only.
Hey I'm using Behat with Mink and Sahi. My Web-Application is running local with apache and XAMPP.
I just tryed to get the hole page with
$driver = new \Behat\Mink\Driver\SahiDriver('firefox',
new \Behat\SahiClient\Client(
new \Behat\SahiClient\Connection(null, 'localhost', 9999)
)
);
$session = new \Behat\Mink\Session($driver);
$session->start();
$session->visit('https://localhost/CMS/index.php/login/login');
echo$session->getPage()->getContent();
and get this error:
Command execution time limit reached: _sahi.setServerVarPlain('___lastValue___527a9575b8270', document.getElementsByTagName("html")[0].innerHTML)
After I deactivated my https connection on my Side i was able to get the page. I think Sahi don't like the Certificate or something like this.
Hope this will help someone and someone cane give me an advice how I'm able to handle a https connection.