---
title: "Transaction verbs not supported in emulated tests are removed automatically"
slug: "transaction-verbs-not-supported-in-emulated-tests-are-removed-automatically"
updated: 2023-01-19T21:20:04Z
published: 2023-01-19T21:20:03Z
canonical: "docs.catchpoint.com/transaction-verbs-not-supported-in-emulated-tests-are-removed-automatically"
---

> ## Documentation Index
> Fetch the complete documentation index at: https://docs.catchpoint.com/llms.txt
> Use this file to discover all available pages before exploring further.

# Transaction verbs not supported in emulated tests are removed automatically

Transaction verbs that are not supported in emulated tests will be removed after 24 hours when the script is saved.

Note that this behavior is not replicable unless the script submission is made to the database. The verbs are not removed when running in instant tests or if the script is in the process of being saved in the scheduled test. The below example explains when the transaction verbs are removed.

The below script is supported in a Chrome transaction test:

```
open(https://www.amazon.com/)
assertElementPresent("//*[@id="twotabsearchtextbox"]")
fireEventAndWait(//*[@id="twotabsearchtextbox"], "click") 
typeKeys("//*[@id="twotabsearchtextbox"]", test)
clickAndWait("//*[@id="nav-search"]/form/div[2]/div/input") 
assertTextPresent("test") `
```

As soon as we save the above script to the system, the script has changed to the below on the test property page:

```
// Step - 1 open("https://www.amazon.com/") 

// Step - 2 clickAndWait("//*[@id=\"nav-search\"]/form/div[2]/div/input")
```
