Trying to run some Selenium here on a webApp that is size sensitive, and I cannot figure out how to resize the window in chrome. The following does not work:
executeScript("window.resizeTo(200,200)"
this seems not to be supported by chrome from what I've found. Execution just skips over this line with no errors but also no effect.
the DSL provided by scalatest plus and the WebBrowser does not seem to provide any way to access manage.window or driver.window functionality available in other languages.
Thoughts?
Thanks,