Hello,
Can anyone tell me if it is possible to simulate a F11 key stroke in Katalon Studio?
Regards,
JOs
Hello,
Can anyone tell me if it is possible to simulate a F11 key stroke in Katalon Studio?
Regards,
JOs
So you wont be able to perform an F11 because the WebDriver doesn’t let you interact with the surrounding
environment. It is limited to the web content as its built off selenium WebDriver.
You can however use the following keyword to maximize your current window -
WebUI.maximizeWindow()
@GDO-Test This can be done using
WebUI.sendKeys(findTestObject(null), Keys.chord(Keys.F11))
You would need to ensure you have imported
import org.openqa.selenium.Keys as Keys
Just an FYI @manpreet.mukkar “WebUI.sendKeys(findTestObject(null), Keys.chord(Keys.F11))” will not work because of the reasons i have stated above
Oh I thought user is asking to how to simulate the F11 through Katalon. Like with combination of command + F11