tapflow v0.3.x: Deeplinks, Keyboard Shortcuts, Screenshot API, and an Experimental MCP Server
The release of tapflow v0.3.x introduces several new features aimed at improving the user experience for QA sessions. Key enhancements include the ability to execute deeplinks directly from the QA session toolbar and the addition of keyboard shortcuts for common simulator actions. Furthermore, a new screenshot API and improved Personal Access Token enforcement enhance the functionality and security of the platform.
- ▪Users can now trigger deeplinks directly from the QA session toolbar, streamlining the testing process.
- ▪Keyboard shortcuts have been added for common actions, making it easier for users to navigate the simulator.
- ▪A new screenshot REST endpoint allows for easier integration with CI pipelines by providing current simulator screen captures.
Opening excerpt (first ~120 words) tap to expand
try { if(localStorage) { let currentUser = localStorage.getItem('current_user'); if (currentUser) { currentUser = JSON.parse(currentUser); if (currentUser.id === 3944002) { document.getElementById('article-show-container').classList.add('current-user-is-article-author'); } } } } catch (e) { console.error(e); } Duchan Posted on May 29 tapflow v0.3.x: Deeplinks, Keyboard Shortcuts, Screenshot API, and an Experimental MCP Server #opensource #ios #android #reactnative Deeplink execution from the browser The one that came up most in real usage: testers frequently need to trigger deeplinks to verify specific app states — product detail pages, notification payloads, OAuth redirects.
…
Excerpt limited to ~120 words for fair-use compliance. The full article is at DEV.to (Top).