简友广场想法软件测试

Part2: Cypress启动及首个Hello World

2021-02-26  本文已影响0人  xianling_he

Test Runner介绍

如何启动Test Runner

image.png image.png

实现第一个Script


/// <reference types="cypress" />

describe('MyFirstTest',function(){
    it('Verify the result',function()
        {
            expect(true).to.equal(true)
        }

    )

    it('Verify title of the homepage',function()
        {
            cy.visit('http://www.mi.cn')
            cy.title().should('eq','小米商城 - 小米11、Redmi Note 9、小米MIX Alpha,小米电视官方网站')
        }

    )
}

)
  1. 结果是如下显示形式,主要特点是左侧是测试结果并且标记出测试结果
  2. 右侧是截图并且标记出测试的页面及测试题图详情


    image.png
  1. 访问mi.cn的官方网址
  2. 验证首页的标题是否跟预期一致
上一篇 下一篇

猜你喜欢

热点阅读