Is there a way to specify the window size in Safari similar to how we set args and prefs in chromeOptions?
I attempted the following setup using Protractor 4.5.1 and Safari 12.0 on Mac:
safari: {
name: 'Safari',
browserName: 'safari',
window_size: 'maximize',
options:{
cleanSession: true
}
}
However, I couldn't get Safari to maximize the window as expected.