From 430721da49f7f4dfa9439aeee36291b4c567f959 Mon Sep 17 00:00:00 2001 From: Jonathan Dobson Date: Mon, 18 Aug 2025 18:45:32 -0400 Subject: [PATCH] update copy; adjust some styles (#3225) --- .../debugger/DebuggerRunTimeline.tsx | 40 +++++++++++-------- 1 file changed, 23 insertions(+), 17 deletions(-) diff --git a/skyvern-frontend/src/routes/workflows/debugger/DebuggerRunTimeline.tsx b/skyvern-frontend/src/routes/workflows/debugger/DebuggerRunTimeline.tsx index ef5e6abc..39597eb8 100644 --- a/skyvern-frontend/src/routes/workflows/debugger/DebuggerRunTimeline.tsx +++ b/skyvern-frontend/src/routes/workflows/debugger/DebuggerRunTimeline.tsx @@ -29,8 +29,11 @@ type Props = { function Step({ n, children }: { n: number; children: React.ReactNode }) { return ( -
-
+
+
+ {n} +
+
{n}
{children}
@@ -68,14 +71,22 @@ function DebuggerRunTimeline({ const runABlock = (
- To run a single block, click the play button on that block. We'll run the - block in the browser, live! + To run a single block, click the play button on that block. Skyvern will + run the block in the browser, live!
); - const runWorkflow = ( + const adjustBrowser = (
- To run your entire workflow, click the large Run button, top right. + Need to adjust the browser to test your block again? You can click around + in the browser to bring Skyvern to any page (manually!) +
+ ); + + const parameters = ( +
+ Want Skyvern to do different things based on your inputs? Use Parameters + to specify them and reference them using {"{{ }}"} syntax!
); @@ -86,26 +97,21 @@ function DebuggerRunTimeline({
); - const removeBlocks = ( -
- Too much? On the top right of each block is an ellipsis (...). Click that - and select "Delete" to remove the block. -
- ); - const steps = [ getStarted, runABlock, - runWorkflow, + adjustBrowser, + getStarted === null ? parameters : null, getStarted === null ? addBlocks : null, - getStarted === null ? removeBlocks : null, ].filter((step) => step); if (!workflowRun || !workflowRunTimeline) { return ( -
+
- {getStarted === null &&
This is going to be awesome! 🤗
} +
+ Build & Debug Complex Browser Automations +
{steps.map((step, index) => ( {step}