Midscene is an automation assistance SDK with a key feature of action stability — ensuring the same actions are performed in each run. To maintain this stability, we encourage you to provide detailed instructions to help the AI understand each step of your task.
If you require a 'goal-to-task' AI planning tool, you can develop one based on Midscene.
Related Docs: Prompting Tips
There are some limitations with Midscene. We are still working on them.
Midscene needs a multimodal Large Language Model (LLM) to understand the UI. Currently, we find that OpenAI's GPT-4o performs much better than others.
You can customize model provider if needed.
Image resolution and element numbers (i.e., a UI context size created by Midscene) will affect the token bill.
Here are some typical data with gpt-4o-0806 without prompt caching.
Task | Resolution | Prompt Tokens / Price | Completion Tokens / Price | Total Cost |
---|---|---|---|---|
Plan and perform a search on eBay homepage | 1280x800 | 6005 / $0.0150125 | 146 / $0.00146 | $0.0164725 |
Query the information about the item in the search results | 1280x800 | 9107 / $0.0227675 | 122 / $0.00122 | $0.0239875 |
The price data was calculated in Nov 2024.
Currently, the contents are:
Since Midscene.js invokes AI for each planning and querying operation, the running time may increase by a factor of 3 to 10 compared to traditional Playwright scripts, for instance from 5 seconds to 20 seconds. This is currently inevitable but may improve with advancements in LLMs.
Despite the increased time and cost, Midscene stands out in practical applications due to its unique development experience and easy-to-maintain codebase. We are confident that incorporating automation scripts powered by Midscene will significantly enhance your project’s efficiency, cover many more situations, and boost overall productivity.
In short, it is worth the time and cost.
It's common when the viewport deviceScaleFactor
does not match your system settings. Setting it to 2 in OSX will solve the issue.
It's mainly about the UI parsing and multimodal AI. Here is a flowchart that describes the core process of the interaction between Midscene and AI.