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 65d5003 commit 27d47aeCopy full SHA for 27d47ae
src/Codeception/Module/WebDriver.php
@@ -3527,9 +3527,12 @@ public function seeNumberOfTabs(int $number): void
3527
*/
3528
public function closeTab(): void
3529
{
3530
+ $currentTab = $this->webDriver->getWindowHandle();
3531
$prevTab = $this->getRelativeTabHandle(-1);
3532
$this->webDriver->close();
- $this->webDriver->switchTo()->window($prevTab);
3533
+ if ($prevTab !== $currentTab) {
3534
+ $this->webDriver->switchTo()->window($prevTab);
3535
+ }
3536
}
3537
3538
/**
0 commit comments