Please set your API key in the settings to generate expressions.
Flexible templates you can customize for your monitoring needs
Select element with specific ID
@@//*[@id='your-element-id']Match web URLs
$/https?://[\w.-]+\.[a-zA-Z]{2,}[/\w.-]*/Select any element with a specific class
@@//div[@class='your-class-name']Find sales with specific discounts
##(sale | discount) (50% | 30%)Match email address pattern
$/[\w._%+-]+@[\w.-]+\.[a-zA-Z]{2,}/Monitor product with availability and purchase options
##(in stock | available) (add to cart | buy now)Select element by any attribute
@@//*[@data-attribute='value']Match integer or decimal numbers
$/\d+\.?\d*/Navigate from parent to child element
@@//div[@class='parent']/span[@class='child']Match any currency with symbol
$/[$€£¥]\d+\.?\d*/Monitor shipping availability
##(free shipping | express) (today | tomorrow)Match phone number pattern
$/$$?\d{3}$$?[-.\s]?\d{3}[-.\s]?\d{4}/Find element containing specific text
@@//*[contains(text(), 'search-text')]Match date with slashes
$/\d{1,2}/\d{1,2}/\d{4}/Select specific position element
@@(//div[@class='item'])[1]