Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
2.9k views
in Technique[技术] by (71.8m points)

automated tests - What is the cypress cy.contains() equivalent in webdriverio?

I have mainly worked with cypress previously for e2e automated testing, I have now started working on webdriverIO. So for a cypress command such as

cy.get("[data-testid='nav-bar']").contains("Search Box").click();

What would be the equivalent for this in webdriverIO? I have tried the following approach in a PageObject Model.

class HomePage extends Page {
    get navBar() {
      return browser.$("[data-testid='nav-bar']");
    }
    
    openSearchBox() {
      this.navBar().click('//*[text="Search Box"]');
    }
}

However, this approach does not seem to work, any help on this would be appreciated.


与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Answer

0 votes
by (71.8m points)

Leaving Page Objects asside for now, you'd type this in WebdriverIO:

const bar = $('[data-testid='nav-bar']');
expect(bar.getText()).toInclude('Search Box');
bar.click();

You can use chai for the assertion instead of Jest Matchers:

const expectChai = require('chai').expect;
// ...
expectChai(bar.getText()).to.have.string('Search Box');
// ...

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Click Here to Ask a Question

...