Javascript – Error making method call inside cypress orgin command
I'm getting the following error attempting to automate my login procedure into a page object. this.signIn is not a function Here is my page object: export class OktaLoginPage { oktaServer = Cypress.env('oktaServer'); get oktaServer() { return this.oktaServer; } set oktaServer(server)…