AI Extract allow you to pull information from the page and save it into variables for later use. This is particularly useful for working with dynamic data that you need to reference in subsequent steps.
// Extract the price from product page"extract": "Get the item price shown on the product page","variable": "productPrice"// Later, verify the same price in cart"assertion": "Verify that the item price in cart matches $productPrice$"
// Save order number after purchase"extract": "Get the order number from the confirmation message","variable": "orderNum"// Use in later steps"instruction": "Search for order $orderNum$ in the order history"