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
Right now call to BrowserTestCase::getSession() will not only create session, but also start it automatically. The auto-start behavior comes from IsolatedSessionStategy.
This behavior might not be desired one, because browser is opened even before any user code, that interacts with it is started.
I think that we can create proxy around Session class, that would ignore explicit calls to start method and will auto-start (if not running) on call to ->visit method.
The text was updated successfully, but these errors were encountered:
Right now call to
BrowserTestCase::getSession()
will not only create session, but also start it automatically. The auto-start behavior comes fromIsolatedSessionStategy
.This behavior might not be desired one, because browser is opened even before any user code, that interacts with it is started.
I think that we can create proxy around Session class, that would ignore explicit calls to
start
method and will auto-start (if not running) on call to->visit
method.The text was updated successfully, but these errors were encountered: