https://i.sstatic.net/ZvlGU.png I am trying to extract just the order ID from the href attribute using Cypress. Can anyone assist me with this?
Below is my Cypress code snippet: `cy.get('[href="/practice/orders"]').click()
cy.get('a[href="/practice/orders/60252307a7e132152c5ebc9b"]:nth(2)').type("a href");
cy.get("tbody")
.contains("a href")
.closest("td")
.find("td")
.then(text => {
const rowText = text;
})`