GoLess
  • Basics
    • Recording Actions
    • Adding workflow manually
    • Tutorial: Scraping data
  • Workflow
    • Customization
    • Blocks
    • Global Data
    • Variables
    • Element Selector
    • Expressions
    • Workflow Table
    • Looping
    • Google Drive
  • Blocks
    • General
      • Note Block
      • Trigger Block
      • Execute Workflow Block
      • Delay Block
      • Export Data Block
      • HTTP Request Block
      • Blocks Group
      • Clipboard Block
      • Wait Connections Block
      • Notification Block
      • Workflow State
      • Parameter Prompt Block
    • Browser
      • Active Tab Block
      • New Tab Block
      • Switch Tab Block
      • New Window Block
      • Proxy Block
      • Go Back Block
      • Go Forward Block
      • Close Tab/Window Block
      • Take Screenshot Block
      • Browser Event Block
      • Handle Download Block
      • Handle Dialog Block
      • Reload Tab Block
      • Get Tab URL Block
      • Cookie Block
    • Web Interaction
      • Click Element Block
      • Get Text Block
      • Scroll Element Block
      • Link Block
      • Attribute Value Block
      • Forms Block
      • Javascript Code Block
      • Trigger Event Block
      • Switch Frame Block
      • Upload File Block
      • Hover Element Block
      • Save Assets Block
      • Press Key Block
      • Create Element Block
    • Control Flow
      • Repeat Task Block
      • Conditions Block
      • Element Exists Block
      • While Loop Block
      • Loop Data Block
      • Loop Elements Block
      • Loop Breakpoint
    • Data
      • Insert Data Block
      • Delete Data Block
      • Get Log Data Block
      • Slice Variable Block
      • Increase Variable Block
      • RegEx Variable Block
      • Data Mapping Block
      • Sort Data Block
    • Оnline Services
      • Google Sheets Block
    • Premium
      • ChatGPT Block
      • Captcha Block
  • REFERENCE
    • Logs
    • Schedule
    • Storage
    • Packages
    • Condition Builder
    • Workflow Common Errors
    • JavaScript Execution Context
Powered by GitBook
On this page
  • Can't find an element with "{selector}" selector
  • Can't find a tab with "{pattern}" patterns #
  • Content body is not valid JSON #
  • Can't connect to a tab, use "New tab" or "Active tab" block before using the "{name}" block. #
  • "{url}" is invalid URL #
  1. REFERENCE

Workflow Common Errors

PreviousCondition BuilderNextJavaScript Execution Context

Last updated 1 year ago

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".

#
#
#
#