/** * @copyright 2026 NHCarrigan * @license Naomi's Public License * @author Naomi Carrigan */ /** * Gets the greeting element from the page. * @returns A Cypress chainable to the h1 element. */ export const getGreeting = (): Cypress.Chainable => { return cy.get("h1"); };