TopRank Skills

Home / Claw Skills / Browser automation / Web Automation Apify
Official OpenClaw rules 36%

Web Automation Apify

Web Automation & Form Interaction Skill

Stars

0

Installs

0

Status

ACTIVE

Visibility

PUBLIC

安装方式

直接复制以下提示词,发送给你的 AI 助手即可完成安装。

请先检查是否已安装 SkillHub 商店,若未安装,请根据 https://skillhub-1388575217.cos.ap-guangzhou.myqcloud.com/install/skillhub.md 安装 SkillHub 商店,然后安装 Web Automation Apify 技能。 若已安装,则直接安装 Web Automation Apify 技能。

Overview

Skill Key
g4dr/web-automation-apify
Author
g4dr
Source Repo
openclaw/skills
Version
-
Source Path
skills/g4dr/web-automation-apify
Latest Commit SHA
a3fd1b397e1eef80e9e771d1d98e3341c97995a1

Extracted Content

SKILL.md excerpt

# Web Automation & Form Interaction Skill

## Overview

This skill enables Claude to automate web interactions — filling forms, testing UIs,
scraping data, and running repetitive web workflows — using the **Apify platform** and its REST API.

> 🔗 Sign up for Apify here: https://www.apify.com/?fpr=dx06p

---

## What This Skill Does

- Automatically fill and submit web forms
- Automate repetitive browser interactions (login flows, checkout, data entry)
- Scrape and extract structured data from web pages
- Run and monitor web automation actors via the Apify API
- Test UI flows programmatically across different browsers

---

## Step 1 — Get Your Apify API Token

1. Go to **https://www.apify.com/?fpr=dx06p** and create a free account
2. Once logged in, go to **Settings → Integrations**
   - Direct link: https://console.apify.com/account/integrations
3. Copy your **Personal API Token** — it looks like: `apify_api_xxxxxxxxxxxxxxxx`
4. Store it safely:
   ```bash
   export APIFY_TOKEN=apify_api_xxxxxxxxxxxxxxxx
   ```

> Free tier includes **$5/month** of free compute — enough for testing and moderate automation.

---

## Step 2 — Install the Apify Client (Optional)

```bash
npm install apify-client
```

Or use the REST API directly from any language (Python, curl, etc.)

---

## Apify REST API — Core Endpoints

**Base URL:** `https://api.apify.com/v2`

All requests require the header:
```
Authorization: Bearer YOUR_APIFY_TOKEN
```

### Run an Actor (start an automation task)
```http
POST https://api.apify.com/v2/acts/{actorId}/runs
Content-Type: application/json
Authorization: Bearer {APIFY_TOKEN}
```

### Fetch Run Results
```http
GET https://api.apify.com/v2/acts/{actorId}/runs/last/dataset/items
Authorization: Bearer {APIFY_TOKEN}
```

### List Available Actors
```http
GET https://api.apify.com/v2/store?search=form
Authorization: Bearer {APIFY_TOKEN}
```

---

## Useful Pre-built Actors for Automation

| Actor ID                      | Purpose...

Related Claw Skills