ZeroWork
  • 👋Home and Welcome
  • 🚀Getting Started
  • ⬇️Install the Agent
  • 🧑‍💻Crash Course
  • Using ZeroWork
    • 🖥️General: Run, Schedule, Share, Webhooks
      • Run
      • Stop
      • Log in to the Agent
      • Run Modes
        • Run Incognito
        • Run Non-Incognito
        • Run in My Regular Browser
      • Run Settings
        • Run in Background
        • Stay on Page after Run
        • Bring Pages to Front
      • TaskBot Sharing Options
      • Cookies
      • Scheduler
      • Trigger Run via Webhook
      • Proxies
      • Remote (Cloud) Execution
      • How to Check and Update Your Agent
      • Install ZeroWork Agent on VPS
    • 📔Using Selectors
      • What Are Selectors
      • Use Element's Text
      • Copy Selectors
      • How to Build Custom Selectors
        • Basic Concepts of Selectors
        • One Element Can Have Many Selector Expressions
        • Check if Selector Is Correct and Unique
        • Exact or Loose Match
        • Hierarchy
        • Combine Filters with Standard CSS Logic
        • Lists: Incremental CSS Selectors
        • Addressing Siblings
      • How to Use XPath in ZeroWork (advanced)
    • 🏗️Using Building Blocks
      • Open Link
      • Save Page Url
      • Switch or Close Tab
      • Go Back or Forward
      • Switch Frame
      • Browser Alert
      • Click Web Element
      • Check Web Element
      • Save Web Element
        • Save Lists
        • Enrich Existing Data
        • Stop Run If Selector Is Not Found Option
      • Insert Text or Data
      • Hover Web Element
      • Select Web Dropdown
      • Keyboard Action
      • Start Condition and Set Condition
        • Actions = & ≠
        • Actions <, ≤, >, ≥
        • Data Found & Data not Found
        • Contains & Does Not Contain
        • Before (Date) & After (Date)
      • Start Repeat
        • Standard Loop
        • Dynamic Loop
        • Continue until No Element Is Found
        • Auto-Scroll
        • Auto-Continue from Last Row or Element
        • Nested Loops - Handle Pagination
      • After Repeat
      • Break Repeat
      • Try-Catch
      • Raise Error
      • Abort Run
      • Update Data
      • Number Operations
        • Example: Standardize different formats
      • Format Data
        • Remove Words
        • Shorten Content Length
      • Split Data
      • Apply Regex
      • Remove Duplicates
      • Delete Data
      • Ask ChatGPT
      • Send Notification
      • APIs: Send HTTP Request
      • Write JavaScript
      • Save File
      • Upload File
      • Delay
      • Record Date
      • Take Screenshot
      • Save from Clipboard
      • Log
      • Building Block Options
        • Delay Times between the Building Blocks
        • Randomize Delay Time
        • Deactivate Building Blocks
        • Shortcuts
        • Spintax
        • Auto-Align
        • Sticky Notes
    • 🔀Using Variables
    • 💿Using Tables
      • How to Add Tables
      • Native Tables
      • Google Sheets
      • Import Data from CSV
      • Using Google Sheet vs. Native Tables
      • Create Columns
      • Export Data as CSV
      • Convert Native Table to a Google Sheet
    • 📄Using Run Reports
    • 😑Common Problems
      • My TaskBot Does Not Start Run
      • When I Use Data from Table, No Data is Being Pulled
      • Website is Glitching and Flashing
      • No Selector is Found
      • My TaskBot Saves Some Data but Not All
      • Data Is Saved in Wrong Format
      • Website Requires SMS or Email Verification
      • Keyboard Action Is Not Working As Expected
      • Check Web Element Identifies Selector as Found but Next Action Does Not
      • When Using Insert Data Block, First Letters Are Cut Off
      • Workflow Has More than One Starting Building Block
      • TaskBot Does Not Automatically Scroll
  • Support
    • 🆘Getting Support
  • 🆕Release Notes
    • Version 1.1.61
    • Version 1.1.62
    • Version 1.1.63
    • Version 1.1.64
    • Version 1.1.65
    • Version 1.1.66
    • Version 1.1.67
    • Version 1.1.68
Powered by GitBook
On this page
  • Where to Find Run Reports
  • How Run Reports Are Displayed
  • Tip for Easier Troubleshooting
  • Notifications

Was this helpful?

  1. Using ZeroWork

Using Run Reports

PreviousConvert Native Table to a Google SheetNextCommon Problems

Last updated 6 months ago

Was this helpful?

Run Reports display all the actions that the TaskBot took during its run. These reports are essential for troubleshooting failed runs.

Where to Find Run Reports

  1. On the TaskBots list page

  1. Inside the TaskBot builder page


How Run Reports Are Displayed

Reports provide detailed information about the TaskBot's run, including timestamps, statuses, and actions taken. Here's an example of how they appear:


Tip for Easier Troubleshooting

  • Click on View Logs to access the logs of the run.

  • Use the Side View feature to position the logs next to your TaskBot workflow for easy comparison.

  • Search for a specific building block ID in your workflow using the ID found in the logs.

Here is an example:


Notifications

You can set up notifications to be sent via email, Slack, or custom webhook. Your notifications will always include error reports.

Notification Types

  • Email: Add recipient email addresses. Here's an example:

  • Webhook: Add a custom webhook URL to receive POST notifications. Here’s an example of the JSON structure sent via webhook:

{
  "taskbot_id": 1,
  "taskbot_name": "Your TaskBot name",
  "taskbot_url": "https://creator.zerowork.io/workflows/1",
  "run_status": "success" | "fail" | "warning" | "unknown" | "manually_stopped",
  "run_type": "webhook" | "scheduled" | "immediate",
  "run_duration": "2.1 hours",
  "run_errors": [
    {
      "id": 1,
      "timestamp": "2024-10-06T13:01:43.755052-04:00",
      "error_message": "Some error message",
      "counter": 5,
      "screenshot": "<screenshot_url>",
      "building_block": {
        "id": "54254235",
        "name": "Your Custom Block Name",
        "type": "Update Data"
      }
    },
    {
      "id": 2,
      "timestamp": "2024-10-06T13:01:45.755052-04:00",
      "error_message": "Some other error message",
      "counter": 1,
      "screenshot": "",
      "building_block": {}
    },
  ]
}

Slack: Provide your Slack webhook URL. Learn how to get it . Here's an example:

📄
here