Been digging at this for a while, and I can\'t seem to find a way to resize a window using scalatest plus.
The only method I\'ve found searching online or the documentat
I was able to resolve this issue by adding the following line of code:
webDriver.manage.window.setSize(new org.openqa.selenium.Dimension(1000, 600))
it's not very intuitive, since we have to explicitly access the implicit webdriver, but it works.