Hi all,
I want to change the size of window, but I can’t find the method on the katalon recorder, so May I add the extension script like this ? It seems not work.
Selenium.prototype.setWindowSize = function(width, height) {
Dimension dimension = new Dimension(width, height);
driver.manage().window().setSize(dimension);
};