Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我目前正在使用所需--start-maximized的 chrome 功能。Firefox 是否有等效选项?
--start-maximized
谢谢!
Here is how I managed to solve it. I added to the onPrepare function in my protractor.conf.js the following,
(function() {browser.driver.manage().window().maximize();})();
This works for both firefox and chrome :)