We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0eaf97e commit 9919a2aCopy full SHA for 9919a2a
src/Codeception/Module/WebDriver.php
@@ -3505,9 +3505,12 @@ public function seeNumberOfTabs($number): void
3505
*/
3506
public function closeTab(): void
3507
{
3508
+ $currentTab = $this->webDriver->getWindowHandle();
3509
$prevTab = $this->getRelativeTabHandle(-1);
3510
$this->webDriver->close();
- $this->webDriver->switchTo()->window($prevTab);
3511
+ if ($prevTab !== $currentTab) {
3512
+ $this->webDriver->switchTo()->window($prevTab);
3513
+ }
3514
}
3515
3516
/**
0 commit comments