UNPKG

cypress-wp-test-utils

Version:
7 lines (6 loc) 256 B
export const getInputByLabel = (label, labelType = 'ariaLabel') => { if (labelType === 'ariaLabel') { return cy.get(`input[aria-label="${label}"]`); } return cy.xpath(`//input/preceding-sibling::label[contains(text(),"${label}")]`); };