Sha256: ed0898bf4dfef6b0408c07cad060e9d802f39ffb650512c7c63e1d9674dcf102
Contents?: true
Size: 602 Bytes
Versions: 20
Compression:
Stored size: 602 Bytes
Contents
/// <reference types="Cypress" /> context('Window', () => { beforeEach(() => { cy.visit('https://example.cypress.io/commands/window') }) it('cy.window() - get the global window object', () => { // https://on.cypress.io/window cy.window().should('have.property', 'top') }) it('cy.document() - get the document object', () => { // https://on.cypress.io/document cy.document().should('have.property', 'charset').and('eq', 'UTF-8') }) it('cy.title() - get the title', () => { // https://on.cypress.io/title cy.title().should('include', 'Kitchen Sink') }) })
Version data entries
20 entries across 20 versions & 1 rubygems