Cannot find window with index "1"

Operating System

Windows 11

Katalon Studio version

version 8.5.0

Log Folder:

.log (354.2 KB)

Environment (for Web Testing)

Chrome version 106

Steps to reproduce

Navigate to a website with a link that opens a new Chrome tab, attempt to navigate to that chrome tab using any of the built in ‘SwitchToWindow*’ functions. This is happening with tests that were completely functional prior to the Chrome 106 version update. The Katalon recorder doesn’t capture the second tab either.

public void forgotUsernamePassword () {

	WebUI.waitForElementClickable(ForgotUsername, 10)

	WebUI.click(ForgotUsername)
	
	WebUI.delay(30)

	WebUI.switchToWindowIndex(1)
}

Expected Behavior
SwitchToWindowIndex takes chromedriver to the second open tab.

Actual Behavior
Cannot find window with index “1”. If using URL or Title, the results are the same.