Description
In examples.md, three desktop-mode click() calls incorrectly use the concept parameter (which belongs to the background browser page.click() API) instead of the correct at parameter.
The desktop click() function is documented with the at parameter in both reference.md and SKILL.md, while concept is the parameter for page.click() (background browser API).
Affected Lines
1. examples.md:205 — Extract Email Information from Gmail example:
click({concept: firstUnreadEmail}); // should be {at: firstUnreadEmail}
2. examples.md:329 — Write to Excel example:
click({concept: "cell A1"}); // should be {at: "cell A1"}
3. examples.md:337 — Write to Excel example:
click({concept: "cell A2"}); // should be {at: "cell A2"}
Expected Fix
Replace concept with at in all three desktop-mode click() calls:
- click({concept: firstUnreadEmail});
+ click({at: firstUnreadEmail});
- click({concept: "cell A1"});
+ click({at: "cell A1"});
- click({concept: "cell A2"});
+ click({at: "cell A2"});
Description
In
examples.md, three desktop-modeclick()calls incorrectly use theconceptparameter (which belongs to the background browserpage.click()API) instead of the correctatparameter.The desktop
click()function is documented with theatparameter in bothreference.mdandSKILL.md, whileconceptis the parameter forpage.click()(background browser API).Affected Lines
1.
examples.md:205— Extract Email Information from Gmail example:2.
examples.md:329— Write to Excel example:3.
examples.md:337— Write to Excel example:Expected Fix
Replace
conceptwithatin all three desktop-modeclick()calls: