chromeflow 0.1.2 → 0.1.4
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/index.js +1 -1
- package/dist/tools/browser.js +2 -2
- package/package.json +1 -1
package/dist/index.js
CHANGED
package/dist/tools/browser.js
CHANGED
|
@@ -13,7 +13,7 @@ function registerBrowserTools(server, bridge) {
|
|
|
13
13
|
);
|
|
14
14
|
server.tool(
|
|
15
15
|
"take_screenshot",
|
|
16
|
-
"Capture a screenshot
|
|
16
|
+
"Capture a screenshot ONLY when click_element or fill_input has failed and you need pixel coordinates to call highlight_region. DO NOT use this to check page state, confirm actions, or see what loaded \u2014 use get_page_text for all of that.",
|
|
17
17
|
{},
|
|
18
18
|
async () => {
|
|
19
19
|
const response = await bridge.request({ type: "screenshot" });
|
|
@@ -37,7 +37,7 @@ function registerBrowserTools(server, bridge) {
|
|
|
37
37
|
);
|
|
38
38
|
server.tool(
|
|
39
39
|
"clear_overlays",
|
|
40
|
-
"Remove all
|
|
40
|
+
"Remove all highlights and callout annotations from the current page. Does NOT remove the guide panel \u2014 the guide panel persists until the next flow starts.",
|
|
41
41
|
{},
|
|
42
42
|
async () => {
|
|
43
43
|
await bridge.request({ type: "clear" });
|
package/package.json
CHANGED