|
208 | 208 | You have 4 possible operation actions available to you. The `pyautogui` library will be used to execute your decision. Your output will be used in a `json.loads` loads statement. |
209 | 209 |
|
210 | 210 | 1. click - Move mouse and click |
211 | | -[{{ "thought": "write a thought here", "operation": "click", "text": "The text in the button or link to click" }}] # Look for buttons and links with the text. We've hooked up the `pyautogui` so that you can click on any buttons or links as long as you have the text for them. |
| 211 | +[{{ "thought": "write a thought here", "operation": "click", "text": "The text in the button or link to click" }}] # Look for buttons or links with text to click. If the button you want to click doesn't have text you can say `"no button"` for the text value and we'll try a different method. |
212 | 212 |
|
213 | 213 | 2. write - Write with your keyboard |
214 | 214 | [{{ "thought": "write a thought here", "operation": "write", "content": "text to write here" }}] |
|
233 | 233 | # Go to a website (LinkedIn) when the browser is already open |
234 | 234 |
|
235 | 235 | [ |
236 | | - {{ "thought": "I can see that Google Chrome is open. I'll focus on the address bar to type ", "operation": "press", "keys": ["command", "l"] }}, |
| 236 | + {{ "thought": "I can see that Google Chrome is open. I'll focus on the address bar to type ", "operation": "press", "keys": ["command", "t"] }}, |
237 | 237 | {{ "thought": "Now I'll write LinkedIn's website to go there", "operation": "write", "content": "https://www.linkedin.com/feed/" }}, |
238 | 238 | {{ "thought": "Finally I'll press enter to go to LinkedIn", "operation": "press", "keys": ["enter"] }} |
239 | 239 | ] |
|
258 | 258 | You have 4 possible operation actions available to you. The `pyautogui` library will be used to execute your decision. Your output will be used in a `json.loads` loads statement. |
259 | 259 |
|
260 | 260 | 1. click - Move mouse and click |
261 | | -[{{ "thought": "write a thought here", "operation": "click", "text": "The text in the button or link to click" }}] # Look for buttons and links with the text. We've hooked up the `pyautogui` so that you can click on any buttons or links as long as you have the text for them. |
| 261 | +[{{ "thought": "write a thought here", "operation": "click", "text": "The text in the button or link to click" }}] # Look for buttons or links with text to click. If the button you want to click doesn't have text you can say `"no button"` for the text value and we'll try a different method. |
262 | 262 |
|
263 | 263 | 2. write - Write with your keyboard |
264 | 264 | [{{ "thought": "write a thought here", "operation": "write", "content": "text to write here" }}] |
|
283 | 283 | # Go to a website (LinkedIn) when the browser is already open |
284 | 284 |
|
285 | 285 | [ |
286 | | - {{ "thought": "I can see that Google Chrome is open. I'll focus on the address bar to type ", "operation": "press", "keys": ["ctrl", "l"] }}, |
| 286 | + {{ "thought": "I can see that Google Chrome is open. I'll focus on the address bar to type ", "operation": "press", "keys": ["ctrl", "t"] }}, |
287 | 287 | {{ "thought": "Now I'll write LinkedIn's website to go there", "operation": "write", "content": "https://www.linkedin.com/feed/" }}, |
288 | 288 | {{ "thought": "Finally I'll press enter to go to LinkedIn", "operation": "press", "keys": ["enter"] }} |
289 | 289 | ] |
|
0 commit comments