Applicationhave.attr gotchaWorkaroundsCustom assertionTypesSee alsoApplicationLet's take an example page in the repo bahmutov/cypress-assertion-example. It has a list with a few items.index.html12345678910111213141516171819<html> <head> <style> ul { list-style: square; } li[data-test-id] { font-weight: bold; } </style> </head> <body> <h2>List</h2> <ul id="data-attributes"> <li data-test-id="first">first</li> <li>second</li> </ul> </b...