使用 CodeceptJs 关闭当前选项卡时会话 ID 无效

Invalid session id when closing current tab with CodeceptJs

我得到一个 invalid session id 尝试使用 CodeceptJs 和 I.closeCurrentTab() 关闭我当前的选项卡时出错,并且不确定如何解决此问题,因为这里的大多数问题似乎与其他框架有关,例如 Selenium。

我让它工作了,看来你真的需要切换回到主选项卡,然后关闭other 选项卡 而不是

When('The user switches back to the main tab', async () => {
  await I.switchTo();
  await I.closeOtherTabs();
});

更多信息here