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
Opening secondary client when createPantherClient use firefox driver send
"Facebook\WebDriver\Exception\SessionNotCreatedException: Session is already started" exception when $client2->request('GET', '/chat');
is called in this example :
$client1 = self::createPantherClient(['browser' => static::FIREFOX]);
$client1->request('GET', '/chat');
// Connect a 2nd user using an isolated browser and say hi!$client2 = self::createAdditionalPantherClient();
$client2->request('GET', '/chat');
$client2->submitForm('Post message', ['message' => 'Hi folks 👋😻']);
// Wait for the message to be received by the first client$client1->waitFor('.message');
// Symfony Assertions are always executed in the **primary** browser$this->assertSelectorTextContains('.message', 'Hi folks 👋😻');
It works fine with chrome driver (open 2 windows with navigator).
The text was updated successfully, but these errors were encountered:
OskarStark
changed the title
createAdditionalPantherClient() with firefox driver not working.createAdditionalPantherClient() with Firefox driver not working
Oct 2, 2024
Opening secondary client when createPantherClient use firefox driver send
"Facebook\WebDriver\Exception\SessionNotCreatedException: Session is already started" exception when
$client2->request('GET', '/chat');
is called in this example :
It works fine with chrome driver (open 2 windows with navigator).
The text was updated successfully, but these errors were encountered: