Skip to content

Commit 21a79f7

Browse files
committedApr 10, 2024·
Micro-optimization of the window closing inside the shared session strategy
1 parent 126c515 commit 21a79f7

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed
 

‎library/aik099/PHPUnit/Session/SharedSessionStrategy.php

+3-2
Original file line numberDiff line numberDiff line change
@@ -98,7 +98,7 @@ protected function stopAndForgetSession()
9898
*/
9999
private function _switchToMainWindow()
100100
{
101-
$this->_session->switchToWindow();
101+
$this->_session->switchToWindow(); // Switch to the window before attempting to execute any window-based calls.
102102
$actual_initial_window_name = $this->_session->getWindowName(); // Account for initial window rename.
103103

104104
foreach ( $this->_session->getWindowNames() as $name ) {
@@ -108,8 +108,9 @@ private function _switchToMainWindow()
108108

109109
$this->_session->switchToWindow($name);
110110
$this->_session->executeScript('window.close();');
111-
$this->_session->switchToWindow();
112111
}
112+
113+
$this->_session->switchToWindow();
113114
}
114115

115116
/**

0 commit comments

Comments
 (0)