简体   繁体   中英

How to get argument with id in cypress

I am converting protractor to cypress page object model below is function and i want to write it in cypress like

*Protractor version

this.getConfigButtons = function(module) {
    return element(by.id("test-sidebar-buttons-" + module));*
}

**Cypress version

public getConfigButtons(module:any){
   return cy.get('.test-sidebar-buttons-').find(module)**
}

but its not working

I think it should be

public getConfigButtons(module:any) {

return cy.get('.test-sidebar-buttons-' + module)

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM