Currently, I am utilizing Protractor for e2e testing with an ng-grid. Unfortunately, not all columns are visible on the screen due to its limited width. My goal is to widen the window beyond the screen size so that everything is displayed within the window without any need for scrolling.
I attempted the following code snippet to increase the window size:
browser.driver.manage().window().setPosition(0, 0);
browser.driver.manage().window().setSize(2000, 3000);
However, this did not result in a larger window surpassing my screen dimensions. Can anyone provide suggestions on how I can force it to expand further? Thank you!