omersomuncu

Results 4 comments of omersomuncu

Same issue here as well. Any suggestion or solution? ``` Using cypress.json configuration: Spec files: cypress/features/**/*.feature [119:1201/121902.100138:ERROR:bus.cc(392)] Failed to connect to the bus: Failed to connect to socket /var/run/dbus/system_bus_socket: No...

same here. After I downgraded 8.7, problem disappeared.

Hi, I created this in plugins/index.js ` on("task", { "gmail:refresh_access_token": async () => { const token = await gmail_tester.refresh_access_token( path.resolve(__dirname, "credentials.json"), path.resolve(__dirname, "token.json") ); console.log("Refreshed the gmail token!"); return token;...

Hey folks, I find the solution. **First of all, do not forget to add "refresh_token":"Your token" to your token.json!!!** After that index.js: It's ready to test: cy.task("gmail:refresh_access_token", {}); Have fun!