For some reason when I run my tests at work the browser is maximized, but when I run them at home it only opens a browser window of about 50% width. This causes some discrep
Modify your config.js file as per below.
onPrepare: function () { browser.driver.manage().window().setSize(1280, 1024); // Width, height }, capabilities: { browserName: 'chrome', chromeOptions: { args: [ "--start-maximized" ] // To start the browser as maximixed } },