powerful-student-85548
12/02/2022, 4:40 AMbitter-fountain-36713
12/02/2022, 4:47 AMpowerful-student-85548
12/02/2022, 4:54 AMwhite-mouse-85089
12/02/2022, 8:21 AMmysterious-belgium-25713
12/02/2022, 11:03 AMwhite-mouse-85089
12/02/2022, 11:05 AMwhite-mouse-85089
12/02/2022, 11:06 AMfresh-doctor-14925
12/02/2022, 11:13 AMwhite-mouse-85089
12/02/2022, 11:24 AMgray-kilobyte-89541
12/02/2022, 11:36 AMgray-kilobyte-89541
12/02/2022, 11:37 AMwhite-mouse-85089
12/02/2022, 1:31 PMsquare-beard-35242
12/02/2022, 10:03 PM> class Homepage_PO {
> Visit_Homepage(){
> cy.visit(Cypress.env('integrax_homepage'),{timeout:60000})
> }
> Login(login, password){
> cy.get('input[name="login"]').type(login)
> cy.get('input[name="password"]').type(password)
> cy.get('#loginBtn').click()
> }
> }
> export default Homepage_PO;
>
and the spec code
> import Homepage_PO from "../../support/pageObjects/integraX/Homepage_PO";
> /// <reference types = 'cypress'/>
>
> describe('Log in into IntegraX', () => {
> const homepage_PO = new Homepage_PO()
> beforeEach(() => {
> homepage_PO.Visit_Homepage();
> });
> it.only('log in as Integra administrator', () => {
> homepage_PO.Login(Cypress.env('integra_admin_login'), Cypress.env('integra_admin_password'));
> });
>
> it('log in as Car Service', () => {
> });
> });
bitter-judge-96754
12/02/2022, 10:36 PMgray-kilobyte-89541
12/03/2022, 3:05 AMsquare-beard-35242
12/03/2022, 11:38 AMconst stub = cy.stub();
cy.document().then(doc => {
doc.documentElement.requestFullscreen = stub
})
cy.get('input[name="password"]')
.type(password)
.then(() => expect(stub).to.be.called)
sparse-megabyte-40861
12/03/2022, 12:39 PMsteep-gpu-98912
12/03/2022, 2:24 PMsteep-gpu-98912
12/03/2022, 2:29 PMsparse-megabyte-40861
12/03/2022, 4:27 PMsparse-megabyte-40861
12/03/2022, 5:59 PMbitter-fountain-36713
12/03/2022, 6:40 PMbetter-elephant-20934
12/04/2022, 2:38 AMbitter-fountain-36713
12/04/2022, 3:22 AMnutritious-analyst-96582
12/04/2022, 3:22 AMfresh-doctor-14925
12/04/2022, 12:36 PMflaky-airport-12178
12/04/2022, 2:19 PMflaky-airport-12178
12/04/2022, 2:19 PMgray-kilobyte-89541
12/04/2022, 5:09 PMnutritious-waitress-23155
12/04/2022, 7:56 PM