TaskNet
  • Welcome to TaskNet Documentation
  • 🚀Getting Started
    • Authentication
      • API KEY
      • Environments
      • Fingerprints
    • Private Vs Public
    • QuickStart
  • Node Operators
    • Becoming a Node Operator
  • 📕Features
    • Browser Sessions
      • Automation Script Support
      • Automation with API
      • Real-Time View
      • File Downloads, and Uploads
    • User Fingerprints
      • Proxy
      • Chrome Extensions
  • 📚Guides
    • Running Automation Scripts
    • RealTime View
  • reference
    • Typescript SDK
      • NodeJS/Typescript
    • API Reference
      • Sessions
      • Enviornments
      • Fingerprints
      • Extensions
      • Page
      • Operators
  • What's New
    • Changelog
  • Socials
    • X
    • Github
    • Linkedin
    • Discord
Powered by GitBook
On this page
  • VncMode
  • Driver
  • Running with Fingerprint
  1. Features

Browser Sessions

You can start browser session on-demand

PreviousBecoming a Node OperatorNextAutomation Script Support

Last updated 3 months ago

Create and manage browser sessions with a defined lease time. Each session runs independently and automatically terminates when the lease expires, ensuring a stable and isolated environment for automation tasks.

VncMode

The vncMode determines the type of interaction available with the browser during the session. There are two possible values:

  • ro (Read-Only): Provides view-only access to the browser session. Users can observe the session but cannot interact with the page.

  • rw (Read-Write): Allows full interaction with the browser, enabling both viewing and control, such as clicking and typing.

Driver

The driver specifies the method used to connect to the browser session. You can choose between two options:

  • api: Connects to the browser using the controller API endpoints.

  • puppeteer: Connects to the browser using Puppeteer.

Running with Fingerprint

When a fingerprint is provided, session data, such as cookies, browsing history, and proxy IP, will be preserved, allowing users to return to the same configuration and settings. Customizing aspects like screen resolution, device settings, and proxy preferences ensures that the session behavior remains consistent over time.

📕
User Fingerprints