Cypress学习14-window窗口属性
2021-03-06 01:26
标签:include 命令 其他属性 示例 char object har charset 使用 在 Cypress 中引用窗口和窗口上其他属性的示例 要获取全局窗口对象,请使用cy.window()命令。 To get the document object, use the cy.document() command. 要获取标题,请使用cy.title()命令。 Cypress学习14-window窗口属性 标签:include 命令 其他属性 示例 char object har charset 使用 原文地址:https://www.cnblogs.com/yoyoketang/p/12878097.html前言
cy.window()
cy.window().should(‘have.property‘, ‘top‘)
cy.document()
要获取document对象,请使用cy.document()命令。cy.document().should(‘have.property‘, ‘charset‘).and(‘eq‘, ‘UTF-8‘)
cy.title()
cy.title().should(‘include‘, ‘Kitchen Sink‘)
下一篇:win10 安装虚拟机问题
文章标题:Cypress学习14-window窗口属性
文章链接:http://soscw.com/index.php/essay/60635.html