Workflow Common Errors

Here we explain a few common errors happening when executing a workflow and how to resolve them.

Can't find an element with "{selector}" selector

This error occurs when the element selector does not match any element on the page. You can use the Element Exist block to check if the elements exist on the page. Or you can go to the element selector options and turn on "Wait for selector".

Can't find a tab with "{pattern}" patterns #

The Match Patterns you input do not match with any URLs tab. You can learn about writing match patterns on the MDN page.

Content body is not valid JSON #

The request body in the HTTP Request block is not in the JSON format.

You may follow this guidance if you try to refer to the data in the body.

Can't connect to a tab, use "New tab" or "Active tab" block before using the "{name}" block. #

This occurs because the block you are trying to use requires an active tab to operate. An active tab in this situation is a tab in which the block will execute.

To fix this, you can use a New Tab block or an Active Tab block before the block you try to use.

"{url}" is invalid URL #

This error happens if the value you enter is not a valid URL. Valid URLs must begin with HTTP or HTTPs such as "https://example.com".

Last updated