+
+
+ {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}