browser.setWindowSize(1800, 2000); // <-- this command
Проверьте документацию
И вы можете добавить его в wdio.conf. js, если хотите сделать это перед тестами
/**
* Gets executed before test execution begins. At this point you can access to all global
* variables like `browser`. It is the perfect place to define custom commands.
* @param {Array.<Object>} capabilities list of capabilities details
* @param {Array.<String>} specs List of spec file paths that are to be run
*/
// before: function (capabilities, specs) {
// },