码迷,mamicode.com
首页 > 其他好文 > 详细

Cypress学习7-连接器connectors

时间:2020-05-12 13:56:36      阅读:65      评论:0      收藏:0      [点我收藏+]

标签:UNC   current   res   containe   into   ext   前言   nal   connector   

前言

关于web页面上的选项,通常我们需要断言选项的个数,遍历每个选项的内容.

.each()

<ul class="connectors-each-ul">
              <li data-cypress-el="true">Lara Williams</li>
              <li data-cypress-el="true">William Grey</li>
              <li data-cypress-el="true">Monica Pharrel</li>
            </ul>

技术图片

cy.get(‘.connectors-each-ul>li‘)
  .each(function($el, index, $list){
    console.log($el, index, $list)
  })

.its()

判断选项里面元素个数

<ul class="connectors-its-ul">
              <li>Chai</li>
              <li>Chai-jQuery</li>
              <li>Chai-Sinon</li>
            </ul>

技术图片

cy.get(‘.connectors-its-ul>li‘)
  // calls the ‘length‘ property returning that value
  .its(‘length‘)
  .should(‘be.gt‘, 2)

.invoke()

隐藏元素判断

<div class="well">
            <div class="connectors-div" style="display: none;">
              This is a div
            </div>
          </div>

定位隐藏元素,对异常隐藏的判断

cy.get(‘.connectors-div‘).should(‘be.hidden‘)
  // call the jquery method ‘show‘ on the ‘div.container‘
  .invoke(‘show‘)
  .should(‘be.visible‘)

.spread()

遍历 arr 依次断言

const arr = [‘foo‘, ‘bar‘, ‘baz‘]

cy.wrap(arr).spread(function(foo, bar, baz){
  expect(foo).to.eq(‘foo‘)
  expect(bar).to.eq(‘bar‘)
  expect(baz).to.eq(‘baz‘)
})

.then()

To invoke a callback function with the current subject, use the .then() command.
技术图片

cy.get(‘.connectors-list>li‘).then(function($lis){
  expect($lis).to.have.length(3)
  expect($lis.eq(0)).to.contain(‘Walk the dog‘)
  expect($lis.eq(1)).to.contain(‘Feed the cat‘)
  expect($lis.eq(2)).to.contain(‘Write JavaScript‘)
})

If the callback function returns a value, it is yielded to the next callback, just like in a Promise callback.

cy.wrap(1)
  .then((num) => {
    expect(num).to.equal(1)

    return 2
  })
  .then((num) => {
    expect(num).to.equal(2)
  })

But unlike a Promise, if undefined is returned, then the original value passed into the .then(cb) is yielded to the next callback.

cy.wrap(1)
  .then((num) => {
    expect(num).to.equal(1)
    // note that nothing is returned from this callback
  })
  .then((num) => {
    // this callback receives the original unchanged value 1
    expect(num).to.equal(1)
  })

If there are Cypress commands in the .then(cb) callback, then the value yielded by the last command will be passed to the next callback.

cy.wrap(1)
  .then((num) => {
    expect(num).to.equal(1)
    // note how we run a Cypress command
    // the result yielded by this Cypress command
    // will be passed to the second ".then"
    cy.wrap(2)
  })
  .then((num) => {
    // this callback receives the value yielded by "cy.wrap(2)"
    expect(num).to.equal(2)
  })

Cypress学习7-连接器connectors

标签:UNC   current   res   containe   into   ext   前言   nal   connector   

原文地址:https://www.cnblogs.com/yoyoketang/p/12875360.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!