I have a web page with a table of products, some of which are reduced in price. The original price is shown with a strike-out which is done by css text-decoration "line-through".
I can verify a single product with
cy.contains('span.amount', '600.00€')
.invoke('css', 'text-decoration')
.should('contain', 'line-through')
but now I want to select all products with this text-decoration. What is the selector syntax for an element with a particular css property, I am aiming to get a list of such products with struck-out prices and ignore the rest?