Is it possible to run a WebdriverIO test case with Google Chrome, without creating a "private Chrome window" (no cache or cookies).
I want to start the Chrome browser I want to use the cookies and cache from Chrome, not a completely default state
Scenario: I am logging into our back-end on Chrome, which sets a token that I use on my localhost. When I run a test through Webdriverio, it doesn't have the token and I have to go through the login process once more.
So, in the terminal, if I run open http://localhost:3001, Chrome will open the application without needing to log in again.
!Note: I don't want to go through a login process on my tests... I just want to use the session token stored in Chrome after I login manually.