Skip to content

Commit 3b4d16b

Browse files
committed
Move migrations section
1 parent cc2ea44 commit 3b4d16b

File tree

2 files changed

+9
-9
lines changed

2 files changed

+9
-9
lines changed

docs.json

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -106,17 +106,17 @@
106106
]
107107
},
108108
"integrations/magnitude",
109-
{
110-
"group": "Migrations",
111-
"pages": [
112-
"integrations/migrations/scrapybara/scrapybara"
113-
]
114-
},
115109
"integrations/stagehand",
116110
"integrations/valtown",
117111
"integrations/vercel"
118112
]
119113
},
114+
{
115+
"group": "Migrations",
116+
"pages": [
117+
"migrations/scrapybara"
118+
]
119+
},
120120
{
121121
"group": "Community",
122122
"pages": [

integrations/migrations/scrapybara/scrapybara.mdx renamed to migrations/scrapybara.mdx

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
title: "Scrapybara"
33
---
44

5-
Scrapybara is shutting down their virtual desktop and browser service on **October 15, 2025**. If you're currently using Scrapybara for browser automation, Kernel is here to help you migrate seamlessly.
5+
[Scrapybara](https://scrapybara.com/) is shutting down their virtual desktop and browser service on **October 15, 2025**. If you're currently using Scrapybara for browser automation, Kernel is here to help you migrate seamlessly.
66

77
This guide shows you how to migrate your Scrapybara browser automation code to Kernel with minimal changes to your existing workflow.
88

@@ -13,7 +13,7 @@ This guide shows you how to migrate your Scrapybara browser automation code to K
1313
| Feature | Scrapybara | Kernel |
1414
|---------|-----------|--------|
1515
| **Start Browser** | `client.start_browser()``instance.browser.start()` | `client.browsers.create()` |
16-
| **Standby Mode** | `instance.pause()` / `instance.resume()` | Automatic standby mode (no manual control) |
16+
| **Standby Mode** | `instance.pause()` / `instance.resume()` | Automatic standby mode |
1717
| **CDP URL** | `instance.browser.get_cdp_url()` | Returns `cdp_ws_url` in create response |
1818
| **Live View** | `instance.get_stream_url()` | Returns `browser_live_view_url` in create response |
1919
| **Stealth Mode** | ❌ Not available | `stealth: true` parameter |
@@ -189,7 +189,7 @@ browser2 = await client.browsers.create(
189189
| **List Browsers** | `client.get_instances()` | `client.browsers.list()` |
190190
| **Save Auth State** | `instance.browser.save_auth(name)` | Create profile with `save_changes: true` |
191191
| **Load Auth State** | `instance.browser.authenticate(auth_state_id)` | `client.browsers.create({ profile: { name } })` |
192-
| **Pause/Resume** | `instance.pause()` / `instance.resume()` | Automatic standby mode (no manual control) |
192+
| **Pause/Resume** | `instance.pause()` / `instance.resume()` | Automatic standby mode |
193193
| **Screenshot** | `instance.screenshot()` | Use Playwright after CDP connection |
194194
| **Timeout Config** | `timeout_hours` parameter | `timeout_seconds` parameter |
195195
| **Stealth Mode** | ❌ Not available | `stealth: true` parameter |

0 commit comments

Comments
 (0)