<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom" xmlns:dc="http://purl.org/dc/elements/1.1/">
  <channel>
    <title>DEV Community: Priya Negi</title>
    <description>The latest articles on DEV Community by Priya Negi (@priya_negi_9ffd29931ea408).</description>
    <link>https://dev.to/priya_negi_9ffd29931ea408</link>
    <image>
      <url>https://media2.dev.to/dynamic/image/width=90,height=90,fit=cover,gravity=auto,format=auto/https:%2F%2Fdev-to-uploads.s3.us-east-2.amazonaws.com%2Fuploads%2Fuser%2Fprofile_image%2F3578296%2F3658bb76-bcd7-405c-8b2e-4b81b00c9169.jpg</url>
      <title>DEV Community: Priya Negi</title>
      <link>https://dev.to/priya_negi_9ffd29931ea408</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://dev.to/feed/priya_negi_9ffd29931ea408"/>
    <language>en</language>
    <item>
      <title>How to scrape data from an app without getting banned</title>
      <dc:creator>Priya Negi</dc:creator>
      <pubDate>Tue, 28 Jul 2026 12:14:07 +0000</pubDate>
      <link>https://dev.to/priya_negi_9ffd29931ea408/how-to-scrape-data-from-an-app-without-getting-banned-2f57</link>
      <guid>https://dev.to/priya_negi_9ffd29931ea408/how-to-scrape-data-from-an-app-without-getting-banned-2f57</guid>
      <description>&lt;h1&gt;
  
  
  Best Practices for Scraping
&lt;/h1&gt;

&lt;p&gt;We wrote a few lines of Python, sent some requests, and our scraping pipeline seemed to work flawlessly. But once we started scraping at scale, things changed quickly. Suddenly we were getting errors, running into CAPTCHAs, or receiving empty pages instead of the data we needed. That's when we realised scraping is a lot harder than it looks. So, after loads of hardship and failures, we want to share our playbook on the best practices for scraping.&lt;/p&gt;

&lt;h2&gt;
  
  
  Essential fundamentals
&lt;/h2&gt;

&lt;p&gt;Most bans happen because people ignore the basics. Before reaching for exotic tools, get these right.&lt;/p&gt;

&lt;h3&gt;
  
  
  Check robots.txt and the Terms of Service
&lt;/h3&gt;

&lt;p&gt;Nearly every site publishes a robots.txt at its root (e.g. example.com/robots.txt) telling automated clients which paths are off-limits. Ignoring it won't just get you blocked faster; depending on the jurisdiction and the data, it can carry legal risk. If a site offers an official API, use it. An API is a sanctioned, structured door into the data, and it will always be more stable than scraping the HTML that surrounds it.&lt;/p&gt;

&lt;h3&gt;
  
  
  Slow down
&lt;/h3&gt;

&lt;p&gt;The single most common reason people get flagged is hammering a server with requests far faster than any human could browse. Add delays between requests, and make them variable rather than a fixed one-second tick, since perfectly regular timing is itself a bot signal. Something in the range of a few seconds, randomized, is a reasonable starting point for polite scraping.&lt;/p&gt;

&lt;h3&gt;
  
  
  Handle errors gracefully
&lt;/h3&gt;

&lt;p&gt;When you get a &lt;code&gt;429 Too Many Requests&lt;/code&gt; or a &lt;code&gt;403&lt;/code&gt;, do not immediately retry in a tight loop. That's the fastest way to escalate a soft throttle into a hard ban. Back off, wait, and reduce your rate. Respect the signal the server is sending you.&lt;/p&gt;

&lt;h3&gt;
  
  
  Rotate your identity where appropriate
&lt;/h3&gt;

&lt;p&gt;This means rotating IP addresses (via proxies) and varying your User-Agent and headers so you don't look like a single machine making thousands of identical requests. Residential and mobile proxies are harder to flag than datacenter IPs, which most anti-bot systems keep on known blocklists.&lt;/p&gt;

&lt;p&gt;These fundamentals will carry you a long way on lightly-defended sites. The trouble is that a growing share of the web is not lightly defended.&lt;/p&gt;

&lt;h2&gt;
  
  
  Why browser-based scrapers get blocked
&lt;/h2&gt;

&lt;p&gt;Here's the part that trips up most people. You can follow every rule above, rotate perfect residential proxies, set a flawless Chrome User-Agent, and still get blocked before your scraper receives a single line of HTML. To understand why, you have to understand that modern anti-bot systems (Cloudflare, DataDome, Akamai, Kasada, PerimeterX/HUMAN) don't rely on any one signal. They combine several layers, and a scraper has to pass all of them simultaneously.&lt;/p&gt;

&lt;h3&gt;
  
  
  Layer 1: TLS and network fingerprinting
&lt;/h3&gt;

&lt;p&gt;Before a website even sees your request, it can already learn a lot about the software making it. When your scraper connects, it goes through a security step called a TLS handshake. During this process, it sends technical details that act like a fingerprint.&lt;/p&gt;

&lt;p&gt;The problem is that common scraping tools like Python's &lt;code&gt;requests&lt;/code&gt; or Node's &lt;code&gt;axios&lt;/code&gt; have fingerprints that don't look like real browsers. Websites compare this fingerprint with the browser you're claiming to be. So if your request says it's coming from Chrome, but the fingerprint clearly looks like a Python script, that's a strong sign you're a bot and your request may be blocked before the page even loads.&lt;/p&gt;

&lt;h3&gt;
  
  
  Layer 2: Browser and device fingerprinting
&lt;/h3&gt;

&lt;p&gt;Even if your request gets past the first checks, websites have another way to detect bots. They run JavaScript in your browser to collect information about your device and browser. This includes things like your screen size, graphics card, installed fonts, browser settings, and many other small details that together create a unique browser fingerprint.&lt;/p&gt;

&lt;p&gt;Headless browsers, which are commonly used for scraping, often stand out because they don't behave exactly like a real browser. For example, they may reveal that they're running in headless mode or expose properties that websites use to identify automation. While there are tools that try to hide these signs, modern anti-bot systems look at dozens of signals together. Fixing one or two isn't usually enough, because real browsers have consistent, natural-looking fingerprints that are hard to fake completely.&lt;/p&gt;

&lt;h3&gt;
  
  
  Layer 3: Behavioral analysis
&lt;/h3&gt;

&lt;p&gt;Even if your browser looks real, it also has to behave like a real person. Websites don't just look at what browser you're using, they also watch how you interact with the page. They can track things like how you move your mouse, how you scroll, how fast you type, where you click, and how long you stay on a page.&lt;/p&gt;

&lt;p&gt;Bots often behave differently from people. They move the mouse in perfectly straight lines, click almost instantly, and type at a perfectly consistent speed. Real users are much less predictable, they pause, make mistakes, scroll at different speeds, and interact naturally. Modern anti-bot systems use machine learning to spot these patterns, so even if one signal looks normal, several suspicious signals together can reveal that it's a bot.&lt;/p&gt;

&lt;p&gt;This is why building a reliable browser-based scraper is so difficult. You have to make your browser look real, behave like a real person, and constantly keep up with new detection techniques. That means managing browser fingerprints, proxies, and human-like behaviour all while websites keep improving their defences. It quickly becomes an ongoing battle that's both complex and expensive.&lt;/p&gt;

&lt;h2&gt;
  
  
  The alternative: scraping through the mobile app layer
&lt;/h2&gt;

&lt;p&gt;Here's a shift in perspective that a lot of scrapers miss. Almost all the detection machinery above was built to catch browser automation on the web. But an enormous amount of the world's data now lives in mobile apps, often data that isn't even exposed on the website. And the detection story on mobile is very different.&lt;/p&gt;

&lt;p&gt;This is where Mobilerun comes into the picture. Instead of driving a headless browser, Mobilerun runs an AI agent on real Android and iOS devices in the cloud. The agent sees the screen, reads the app's UI accessibility tree, and interacts the way a person would: tapping, swiping, scrolling, and typing. It extracts structured data directly from the app.&lt;/p&gt;

&lt;h2&gt;
  
  
  Why this avoids so much of the detection problem
&lt;/h2&gt;

&lt;p&gt;The reason browser scrapers get caught is that they present a synthetic environment and detection systems are purpose-built to spot exactly those artifacts. Mobilerun changes the situation on several fronts:&lt;/p&gt;

&lt;h3&gt;
  
  
  It's a real device, not an emulator or headless browser.
&lt;/h3&gt;

&lt;p&gt;Real phones don't have many of the giveaways that browser-based bots do. There's no &lt;code&gt;navigator.webdriver&lt;/code&gt; flag, no headless browser identifier, and no browser fingerprint that doesn't match the device. Everything from the hardware and operating system to the sensors and installed apps is exactly what you'd expect from a real person's phone.&lt;/p&gt;

&lt;p&gt;That's a big advantage because anti-bot systems are looking for consistency. Real devices naturally provide it, while emulators and virtual devices often expose artificial hardware details or other subtle signs that they're not genuine. A physical phone simply behaves like a normal phone, making it much harder to distinguish from a real user.&lt;/p&gt;

&lt;h3&gt;
  
  
  Real sensor and network characteristics.
&lt;/h3&gt;

&lt;p&gt;Physical phones produce noisy accelerometer and gyroscope data, and carrier-network and latency patterns that are genuinely hard to fake. Some platforms cross-check sensor telemetry against UI gestures specifically to catch synthetic control; on a real device driven through the OS, that telemetry is authentic.&lt;/p&gt;

&lt;h3&gt;
  
  
  Human-like interaction by construction.
&lt;/h3&gt;

&lt;p&gt;Because the agent acts through the device's normal input layer, its behavior sits much closer to a real user's than a script firing thousands of identical HTTP requests ever could.&lt;/p&gt;

&lt;p&gt;By starting from a genuine device and a genuine interaction model, you're no longer fighting the entire browser-detection stack, you've largely stepped around it.&lt;/p&gt;

&lt;p&gt;Essentially, the mobile approach shines anywhere the valuable data lives inside an app, or where the mobile app is simply less defended than the hardened website. Common examples:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Pricing and availability from travel, food-delivery, ride-hailing, or grocery apps whose sites are heavily protected but whose apps are the primary interface.&lt;/li&gt;
&lt;li&gt;Listings data from marketplaces and real-estate apps.&lt;/li&gt;
&lt;li&gt;Social and review data from platforms where much of the activity is mobile-first.&lt;/li&gt;
&lt;li&gt;Any app with no public API at all, which is the majority of them, where the UI is the only way in.&lt;/li&gt;
&lt;/ul&gt;

&lt;h2&gt;
  
  
  Putting it together
&lt;/h2&gt;

&lt;p&gt;If you're scraping a simple website, keep it simple: respect robots.txt, use the official API if one exists, limit how fast you send requests, vary your timing, and handle errors gracefully. That's enough for many websites.&lt;/p&gt;

&lt;p&gt;If you're scraping a site with strong anti-bot protection, it's much harder. Modern websites check your network fingerprint, browser fingerprint, and behaviour to detect bots. Getting past all of that with headless browsers takes constant effort.&lt;/p&gt;

&lt;p&gt;If the data is available in a mobile app, using a real phone can be a much easier approach. Platforms like Mobilerun let you automate real Android or iOS devices, so you avoid many of the browser-specific detection techniques. You're not pretending to be a real user, you're using a real device.&lt;/p&gt;

</description>
      <category>ai</category>
      <category>brightdatachallenge</category>
      <category>webscraping</category>
      <category>database</category>
    </item>
    <item>
      <title>Doubao vs Mobilerun: Which is better?</title>
      <dc:creator>Priya Negi</dc:creator>
      <pubDate>Mon, 20 Jul 2026 06:02:11 +0000</pubDate>
      <link>https://dev.to/priya_negi_9ffd29931ea408/doubao-vs-mobilerun-which-is-better-2f21</link>
      <guid>https://dev.to/priya_negi_9ffd29931ea408/doubao-vs-mobilerun-which-is-better-2f21</guid>
      <description>&lt;p&gt;The race to build AI agents that can operate smartphones is accelerating. Instead of relying on APIs or app integrations, these agents interact with mobile apps the same way humans do like reading the screen, tapping buttons, typing text, and navigating multi-step workflows.&lt;/p&gt;

&lt;p&gt;Two products taking very different approaches are ByteDance's&lt;a href="https://www.nubia.com/en/news/as-an-ai-native-phone-pioneer-nubia-reshapes-the-paradigm-of-human-device-interaction-at-mwc-barcelona-2026.html" rel="noopener noreferrer"&gt; Doubao&lt;/a&gt; AI Phone and &lt;a href="https://mobilerun.ai/" rel="noopener noreferrer"&gt;Mobilerun&lt;/a&gt;, the mobile AI agent infrastructure developed by Droidrun.&lt;br&gt;
While both aim to solve the same problem, they are designed for different audiences.&lt;/p&gt;

&lt;p&gt;Doubao packages AI into a dedicated smartphone with a tightly integrated experience. Mobilerun provides the infrastructure that lets developers connect AI models to Android or iOS devices, whether those devices are physical phones or cloud phones.&lt;/p&gt;

&lt;p&gt;We spent time testing both approaches across a series of real-world tasks to understand where each performs well and where each still struggles.&lt;/p&gt;

&lt;h2&gt;
  
  
  Two Different Answers to the Same Problem
&lt;/h2&gt;

&lt;p&gt;&lt;strong&gt;Doubao and Mobilerun&lt;/strong&gt; are both trying to answer a simple question: can an AI agent operate the apps on a phone the way a person does like reading the screen, tapping, typing, moving through multi-step tasks instead of relying on api endpoints which are not always available.&lt;br&gt;
The difference lies in how they approach the problem:&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Doubao&lt;/strong&gt; solves it through the operating system. The AI is deeply integrated into a dedicated smartphone designed around an agent-first experience. &lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Mobilerun&lt;/strong&gt; solves it through infrastructure. Rather than shipping a phone, it provides a platform that allows developers to connect AI models like Claude, Hermes, or OpenClaw to Android or iOS devices and automate mobile workflows.&lt;/p&gt;

&lt;h3&gt;
  
  
  Quick Feature Comparison
&lt;/h3&gt;

&lt;div class="table-wrapper-paragraph"&gt;&lt;table&gt;
&lt;thead&gt;
&lt;tr&gt;
&lt;th&gt;Feature&lt;/th&gt;
&lt;th&gt;Doubao AI Phone&lt;/th&gt;
&lt;th&gt;Mobilerun&lt;/th&gt;
&lt;/tr&gt;
&lt;/thead&gt;
&lt;tbody&gt;
&lt;tr&gt;
&lt;td&gt;Product Type&lt;/td&gt;
&lt;td&gt;AI-powered smartphone&lt;/td&gt;
&lt;td&gt;Mobile AI agent infrastructure&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;Hardware Required&lt;/td&gt;
&lt;td&gt;Dedicated Doubao phone&lt;/td&gt;
&lt;td&gt;Existing Android, iPhone, or cloud phone&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;Cloud Phone Support&lt;/td&gt;
&lt;td&gt;No&lt;/td&gt;
&lt;td&gt;Yes&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;Agent Support&lt;/td&gt;
&lt;td&gt;Doubao ecosystem&lt;/td&gt;
&lt;td&gt;OpenAI, Anthropic, Gemini, Ollama, DeepSeek, Hermes, OpenClaw, and others&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;Target Audience&lt;/td&gt;
&lt;td&gt;Consumers&lt;/td&gt;
&lt;td&gt;Developers &amp;amp; businesses&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;Human-in-the-loop&lt;/td&gt;
&lt;td&gt;Yes&lt;/td&gt;
&lt;td&gt;Yes&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;Cross-application Workflow&lt;/td&gt;
&lt;td&gt;Yes&lt;/td&gt;
&lt;td&gt;Yes&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;Setup Complexity&lt;/td&gt;
&lt;td&gt;Easy&lt;/td&gt;
&lt;td&gt;Medium&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;Scalable to Multiple Devices&lt;/td&gt;
&lt;td&gt;No&lt;/td&gt;
&lt;td&gt;Yes&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;Hardware&lt;/td&gt;
&lt;td&gt;Nubia M153&lt;/td&gt;
&lt;td&gt;Can operate most mobile devices&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;Background Task Execution&lt;/td&gt;
&lt;td&gt;Yes&lt;/td&gt;
&lt;td&gt;Limited to cloud phones&lt;/td&gt;
&lt;/tr&gt;
&lt;/tbody&gt;
&lt;/table&gt;&lt;/div&gt;

&lt;h3&gt;
  
  
  How Doubao Works
&lt;/h3&gt;

&lt;p&gt;&lt;a href="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.us-east-2.amazonaws.com%2Fuploads%2Farticles%2F1qcvpk9854n9936d32dp.png" class="article-body-image-wrapper"&gt;&lt;img src="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.us-east-2.amazonaws.com%2Fuploads%2Farticles%2F1qcvpk9854n9936d32dp.png" alt=" " width="799" height="343"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;The first thing you notice on the Doubao AI Phone is its dedicated AI button. Press it and the assistant appears immediately, ready to execute the task. It opens apps, navigates interfaces, types text, and moves through multiple screens autonomously. The experience feels much closer to delegating work to an assistant. &lt;/p&gt;

&lt;p&gt;&lt;a href="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.us-east-2.amazonaws.com%2Fuploads%2Farticles%2F6bb9rsm3toiemxp5jowk.png" class="article-body-image-wrapper"&gt;&lt;img src="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.us-east-2.amazonaws.com%2Fuploads%2Farticles%2F6bb9rsm3toiemxp5jowk.png" alt=" " width="670" height="562"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;h3&gt;
  
  
  How Mobilerun Works
&lt;/h3&gt;

&lt;p&gt;Instead of requiring dedicated hardware, it connects AI models to existing mobile devices. Users can either:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;connect their own Android or iPhone or Cloud phones for remote scalable automation, or&lt;/li&gt;
&lt;li&gt;launch cloud phones for remote automation.
The AI interacts with the device by observing the interface and performing actions on behalf of the user. Unlike consumer-focused assistants,Mobilerun is a infrastructure layer for mobile agents.
  &lt;iframe src="https://www.youtube.com/embed/HVHXkkxzbTI"&gt;
  &lt;/iframe&gt;
 &lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;&lt;a href="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.us-east-2.amazonaws.com%2Fuploads%2Farticles%2Ftfq8rly5f3w128ztxe88.png" class="article-body-image-wrapper"&gt;&lt;img src="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.us-east-2.amazonaws.com%2Fuploads%2Farticles%2Ftfq8rly5f3w128ztxe88.png" alt=" " width="799" height="706"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;Let’s compare both Doubao and Mobilerun for a few tasks:&lt;/p&gt;

&lt;h3&gt;
  
  
  Ordering an Iced Americano: Doubao vs Mobilerun
&lt;/h3&gt;

&lt;p&gt;&lt;strong&gt;On Doubao:&lt;/strong&gt; We asked Doubao to order an iced Americano. The assistant opened the food delivery app, searched for coffee, compared prices, selected the lowest-priced option, and attempted to complete the order. During the process, it paused appropriately when clarification was needed.&lt;/p&gt;

&lt;p&gt;The workflow completed successfully, although the entire process took close to three minutes. Overall, the experience felt similar to delegating the task to a junior assistant that occasionally asks follow-up questions before proceeding.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;On Mobilerun:&lt;/strong&gt; We repeated the same task using Mobilerun. The agent opened the delivery application, searched for an iced Americano, compared available options, selected one, and added it to the cart. Rather than automatically completing the purchase, it paused and asked whether the order should be placed or left in the cart.&lt;/p&gt;

&lt;p&gt;This human-in-the-loop workflow provides an additional confirmation step before performing actions with financial consequences.&lt;/p&gt;

&lt;h3&gt;
  
  
  Task 2: Comment on a post
&lt;/h3&gt;

&lt;p&gt;&lt;strong&gt;On Doubao:&lt;/strong&gt; We asked the agent to post a comment under Instagram post, Doubao repeatedly typed and deleted text, then gave up, and simply couldn't identify the comment button. It's a small, telling failure: the agent handles familiar surfaces well, but a control it can't confidently locate stops it. &lt;/p&gt;

&lt;p&gt;&lt;strong&gt;On Mobilerun.&lt;/strong&gt; We then repeated the same task using Mobilerun. During our testing, the agent successfully navigated to the post, entered the requested comment, and submitted it.&lt;/p&gt;

&lt;p&gt;One factor that likely contributed to this result is Mobilerun's ability to combine a11y tree information with computer vision when interpreting the interface, allowing it to identify actionable UI elements more reliably in many situations.&lt;/p&gt;

&lt;h3&gt;
  
  
  Task 3: Chat with a friend on Wechat
&lt;/h3&gt;

&lt;p&gt;&lt;strong&gt;On Doubao:&lt;/strong&gt; For our final test, we asked Doubao to open WeChat and send a message to a friend. During testing, the workflow did not complete successfully. &lt;/p&gt;

&lt;p&gt;Public reports have noted compatibility challenges between the Doubao AI Phone and certain major Chinese applications, including WeChat, although the exact causes have not been fully disclosed publicly. Some applications reportedly blocked Doubao from automating tasks (due to security issues)&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;On Mobilerun:&lt;/strong&gt; We repeated the same task using Mobilerun. This time, the agent understood the context, opened WeChat, and chatted with the friend. Again for this task, Mobilerun agent successfully executed the task, while Doubao struggled. &lt;/p&gt;

&lt;h3&gt;
  
  
  What these tasks reveal
&lt;/h3&gt;

&lt;p&gt;&lt;strong&gt;Doubao is a genuine milestone:&lt;/strong&gt; the first agent-led smartphone that is integrated into a user's device.&lt;/p&gt;

&lt;p&gt;Unlike earlier swings such as the Rabbit R1, which stumbled on even its promised basics, Doubao completes real end-to-end workflows like ordering food, playing podcasts, navigating apps entirely through the agent, on a device you can buy today. But it runs those tasks as a self-contained device experience, and when it can't parse a UI element or hits an app's defenses, it stops. It works just well enough to prove an agent-first phone is possible, and fails just often enough to show how far the idea has to go. It is still a testing ground.&lt;/p&gt;

&lt;p&gt;Mobilerun treats the same problem as a layer rather than a device. Because it's model-agnostic (OpenAI, Anthropic, Gemini, Ollama, DeepSeek) and runs on both Android and iOS, on personal phones or cloud phones, it isn't tied to one handset or one vendor's reasoning. The human-in-the-loop chat model means you stay in control of consequential actions like placing an order, making a payment etc. And the a11y + vision mode + better architecture is what lets it push through the exact UI moments, like finding a "Send" button, where Doubao agent gives up. &lt;/p&gt;

&lt;p&gt;&lt;a href="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.us-east-2.amazonaws.com%2Fuploads%2Farticles%2Flhug4a0jqdjo0l85y941.png" class="article-body-image-wrapper"&gt;&lt;img src="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.us-east-2.amazonaws.com%2Fuploads%2Farticles%2Flhug4a0jqdjo0l85y941.png" alt=" " width="799" height="703"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;Doubao is a product you hold, Mobilerun is a infrastructure layer you operate with. But on the same tasks, they draw the two roads to the same destination: the phone as something you delegate to rather than operate. &lt;/p&gt;

&lt;h3&gt;
  
  
  Which one to choose?
&lt;/h3&gt;

&lt;p&gt;If you're looking for a consumer-friendly AI phone that works out of the box, Doubao offers one of the most compelling implementations currently available.&lt;/p&gt;

&lt;p&gt;If you're building AI agents, automating mobile workflows, or integrating smartphones into larger AI systems, Mobilerun provides considerably more flexibility and infrastructure.&lt;/p&gt;

</description>
      <category>ai</category>
      <category>mobile</category>
      <category>automation</category>
      <category>reviews</category>
    </item>
    <item>
      <title>Mobilerun vs DuoPlus: Which one to choose?</title>
      <dc:creator>Priya Negi</dc:creator>
      <pubDate>Thu, 16 Jul 2026 07:44:42 +0000</pubDate>
      <link>https://dev.to/priya_negi_9ffd29931ea408/mobilerun-vs-duoplus-which-one-to-choose-3eb6</link>
      <guid>https://dev.to/priya_negi_9ffd29931ea408/mobilerun-vs-duoplus-which-one-to-choose-3eb6</guid>
      <description>&lt;p&gt;Both &lt;a href="https://mobilerun.ai/" rel="noopener noreferrer"&gt;Mobilerun&lt;/a&gt; and &lt;a href="https://www.duoplus.net/" rel="noopener noreferrer"&gt;DuoPlus&lt;/a&gt; put mobile devices in the cloud and let you automate them and both can run many social media accounts at scale with automation. Let’s compare these two on different parameters. &lt;/p&gt;

&lt;h3&gt;
  
  
  Quick take
&lt;/h3&gt;

&lt;p&gt;Mobilerun is an open-source, LLM-agnostic framework plus a managed cloud that lets AI agents drive real Android and iOS devices with natural language. It also provides cloud devices and real mobile devices in the cloud. &lt;br&gt;
DuoPlus runs real ARM-based Android devices in the cloud, each in an isolated environment, so one person can operate many social media, e-commerce, or gaming accounts from a single computer without buying physical phones.&lt;/p&gt;

&lt;h2&gt;
  
  
  Side-by-Side Comparison: Mobilerun vs DuoPlus
&lt;/h2&gt;

&lt;div class="table-wrapper-paragraph"&gt;&lt;table&gt;
&lt;thead&gt;
&lt;tr&gt;
&lt;th&gt;Parameter&lt;/th&gt;
&lt;th&gt;Mobilerun&lt;/th&gt;
&lt;th&gt;DuoPlus&lt;/th&gt;
&lt;/tr&gt;
&lt;/thead&gt;
&lt;tbody&gt;
&lt;tr&gt;
&lt;td&gt;&lt;strong&gt;Core purpose&lt;/strong&gt;&lt;/td&gt;
&lt;td&gt;Give AI agents a phone; developer automation, social media automation, RPA, QA&lt;/td&gt;
&lt;td&gt;Anti-detect cloud phone for multi-account social/e-commerce operations&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;&lt;strong&gt;OS support&lt;/strong&gt;&lt;/td&gt;
&lt;td&gt;Android and iOS&lt;/td&gt;
&lt;td&gt;Android only&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;&lt;strong&gt;Automation approach&lt;/strong&gt;&lt;/td&gt;
&lt;td&gt;Natural-language LLM agent; deterministic replay scripts&lt;/td&gt;
&lt;td&gt;RPA templates, custom workflows, Operation Sync, DUO+ AI Agent&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;&lt;strong&gt;LLM support&lt;/strong&gt;&lt;/td&gt;
&lt;td&gt;LLM-agnostic (OpenAI, Anthropic, Gemini, Ollama, DeepSeek, OpenRouter)&lt;/td&gt;
&lt;td&gt;Proprietary AI templates / DUO+ AI Agent&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;&lt;strong&gt;Device technology&lt;/strong&gt;&lt;/td&gt;
&lt;td&gt;Cloud-hosted virtual phones + real physical hardware; residential proxy&lt;/td&gt;
&lt;td&gt;Real ARM-chip Android devices in the cloud&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;&lt;strong&gt;Identity / stealth&lt;/strong&gt;&lt;/td&gt;
&lt;td&gt;Real-device identity, carrier-grade residential IPs, eSIM&lt;/td&gt;
&lt;td&gt;Independent fingerprints, GPS + SIM data across 150+ countries&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;&lt;strong&gt;Scale model&lt;/strong&gt;&lt;/td&gt;
&lt;td&gt;Fleets from 1 to 10,000+ phones&lt;/td&gt;
&lt;td&gt;Unlimited multiplicity&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;&lt;strong&gt;Developer tooling&lt;/strong&gt;&lt;/td&gt;
&lt;td&gt;Open-source framework, CLI, Python SDK, Docker, REST API, webhooks&lt;/td&gt;
&lt;td&gt;REST API, ADB access, proxy management&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;&lt;strong&gt;Open source&lt;/strong&gt;&lt;/td&gt;
&lt;td&gt;Yes (MIT licensed)&lt;/td&gt;
&lt;td&gt;No&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;&lt;strong&gt;SMS / numbers&lt;/strong&gt;&lt;/td&gt;
&lt;td&gt;Receives SMS on real devices and eSIM&lt;/td&gt;
&lt;td&gt;No real SIM; uses "Cloud Number" add-on for SMS&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;&lt;strong&gt;Entry pricing&lt;/strong&gt;&lt;/td&gt;
&lt;td&gt;From &lt;strong&gt;$5/month&lt;/strong&gt; (bring your own phone); &lt;strong&gt;$0.03/min&lt;/strong&gt; pay-as-you-go&lt;/td&gt;
&lt;td&gt;Cloud phone from &lt;strong&gt;~$2/month&lt;/strong&gt;
&lt;/td&gt;
&lt;/tr&gt;
&lt;/tbody&gt;
&lt;/table&gt;&lt;/div&gt;

&lt;h3&gt;
  
  
  Platform support
&lt;/h3&gt;

&lt;p&gt;Mobilerun controls both Android and iOS, and its cloud even offers real physical iPhones on custom hardware built for iOS stealth.&lt;br&gt;
DuoPlus is Android-only. If iOS matters to you, DuoPlus is off the table today; if you specifically want the newest Android on real ARM silicon, DuoPlus is the stronger claim.&lt;/p&gt;

&lt;h3&gt;
  
  
  Automation approach
&lt;/h3&gt;

&lt;p&gt;Mobilerun is built around LLM agents that read the screen (a11y trees plus screenshots), then tap, swipe, and type from a natural-language instruction. It's LLM-agnostic and supports a reasoning mode for complex multi-step tasks. Usefully, you can build a workflow with the agent and then replay it as a fast, deterministic script with no model in the loop.&lt;/p&gt;

&lt;p&gt;DuoPlus approaches automation through RPA: pre-built templates and custom workflows, plus an Operation Sync feature that mirrors one action across many devices at once (like posting to dozens of accounts simultaneously).&lt;/p&gt;

&lt;h3&gt;
  
  
  Device technology and identity
&lt;/h3&gt;

&lt;p&gt;Both Mobilerun and DuoPlus stress that their devices look like real phones to detection systems, but they get there differently.&lt;br&gt;
DuoPlus runs virtual Android on authentic ARM chips deployed globally, and gives each instance an independent environment which means its own device parameters, GPS, and simulated SIM/base-station data across 150+ countries to reduce account association risk. There is basically no cap on how many devices you create or run. &lt;/p&gt;

&lt;p&gt;Two constraints DuoPlus states plainly: each cloud phone requires a dedicated proxy IP, and there's no real SIM, so calls/SMS need the separate Cloud Number product. &lt;/p&gt;

&lt;p&gt;Mobilerun offers a mix: cloud-hosted virtual phones, plus real physical hardware (including iPhones) for workflows that need the strongest device authenticity. It bundles carrier-grade residential proxies and real-device identity, and its real devices can receive SMS directly.&lt;/p&gt;

&lt;h3&gt;
  
  
  Access and developer tooling
&lt;/h3&gt;

&lt;p&gt;DuoPlus is built for reach without setup friction: no client download is required, and you control your fleet from any PC or mobile browser. Under the hood it's a proprietary, closed platform, but it exposes a REST API, Android ADB access, and proxy management, with extensive API docs for phone control, automation, and team management.&lt;/p&gt;

&lt;p&gt;Mobilerun’s core framework is open source under the MIT license. You can run it locally on your own machine and devices, then scale to the managed cloud with a config change. &lt;br&gt;
The difference is: Mobilerun is code-first and inspectable; DuoPlus is a managed, browser-based dashboard product with an API attached.&lt;/p&gt;

&lt;h3&gt;
  
  
  Pricing
&lt;/h3&gt;

&lt;p&gt;Mobilerun (per its pricing page): a dedicated cloud Android phone is $80/month ($768 billed yearly); a real physical iPhone is $200/month ($1,920 yearly); bring-your-own-phone is $5/month ($48 yearly). There's also pay-as-you-go cloud Android at $0.03/min with no commitment. Usage add-ons: cloud Android time $0.03/min, mobile premium proxy $10/GB, and agent step $0.01. Enterprise pricing (10,000+ concurrent phones, SOC2/SSO) is custom.&lt;/p&gt;

&lt;p&gt;DuoPlus (per its help center and product pages): the cloud phone itself is around $2/month (cheaper in bulk), billed separately from "startup" time. You then pick a startup mode — Temporary Startup billed by the minute (its help center lists $0.06 per 10 minutes per device, capped at $1.2/day per device) or a flat-fee monthly Subscription Startup that allows unlimited startup during its validity. New users get 1 month of cloud phone plus 30 minutes of free startup time. (DuoPlus lists slightly different per-minute figures across pages, so check its live pricing page before buying.)&lt;/p&gt;

&lt;p&gt;The main difference: DuoPlus is optimized for cheap, large fleets of Android instances you spin up and down; Mobilerun's per-device plans cost more but include the AI agent, stealth identity, proxy, and  iOS.&lt;/p&gt;

&lt;h3&gt;
  
  
  Which should you choose?
&lt;/h3&gt;

&lt;p&gt;Choose Mobilerun if you're building AI agents, want an open-source and LLM-agnostic framework, need iOS as well as Android, or want to prototype locally and scale to a managed cloud with the same code.&lt;br&gt;
Choose DuoPlus if your job is running many Android social media or e-commerce accounts safely and cheaply at scale, you want a no-download browser dashboard with bulk operations, one-click reskin/sharing, and RPA templates, and you don't need iOS.&lt;/p&gt;

&lt;p&gt;Both can run large fleets of social media accounts with automation, so this isn't an either/or on capability - it's a fit decision. Pick Mobilerun if you want AI-agent-driven automation, open-source flexibility, and cross-platform (iOS + Android) reach. Pick DuoPlus if you want a no-code, browser-based dashboard tuned specifically for scaling Android account operations.&lt;/p&gt;

</description>
      <category>mobile</category>
      <category>ai</category>
      <category>opensource</category>
      <category>automation</category>
    </item>
    <item>
      <title>Browseruse vs Mobilerun: Automation Model, Scaling and More</title>
      <dc:creator>Priya Negi</dc:creator>
      <pubDate>Fri, 10 Jul 2026 04:57:02 +0000</pubDate>
      <link>https://dev.to/priya_negi_9ffd29931ea408/browseruse-vs-mobilerun-automation-model-scaling-and-more-3pme</link>
      <guid>https://dev.to/priya_negi_9ffd29931ea408/browseruse-vs-mobilerun-automation-model-scaling-and-more-3pme</guid>
      <description>&lt;p&gt;At first glance, &lt;a href="https://browser-use.com/" rel="noopener noreferrer"&gt;Browser Use&lt;/a&gt; and &lt;a href="https://mobilerun.ai/" rel="noopener noreferrer"&gt;Mobilerun&lt;/a&gt; might seem like they solve the same problem. But they don't. Browser use gives your AI agent access to a browser, while Mobilerun gives it access to a mobile device. That distinction determines what your agent can actually automate.&lt;/p&gt;




&lt;h3&gt;
  
  
  What is Browser Use?
&lt;/h3&gt;

&lt;p&gt;Browser Use is AI browser automation: you give an agent a natural-language task and it drives a real web browser to complete it. It comes in two forms. There's the open-source Python library (browser-use), which you run on your own machine and point at your own LLM provider, and there's Browser Use Cloud, a managed API that runs the same idea on hosted, stealth browser infrastructure so you don't manage anything yourself.&lt;br&gt;
The pitch is that you send a task like "List the top 20 posts on Hacker News today with their points" and get structured results back. Under the hood the agent looks at the page, decides the next action, clicks, types, scrolls, and repeats until the task is done.&lt;/p&gt;

&lt;h3&gt;
  
  
  What Browser Use provides
&lt;/h3&gt;

&lt;p&gt;Two modes: Agent and Browser. The Agent runs your natural-language task end to end and hands back a result. The Browser mode gives you a raw cloud browser over the Chrome DevTools Protocol (CDP) so your own code drives it. The infrastructure is the same infrastructure, but the control level is different. &lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Stealth browsers:&lt;/strong&gt; The Cloud runs a forked Chromium built to get agents past bot detection and access sites that block ordinary automation.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;CAPTCHA solving and residential proxies:&lt;/strong&gt; You get proxies that span 195+ countries and are on by default, which helps sessions look like real regional users.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Framework compatibility:&lt;/strong&gt; You can connect Playwright, Puppeteer, or Selenium to the hosted browsers over CDP, so existing scripts keep working.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Profiles and authentication:&lt;/strong&gt; Persistent browser state lets an agent log in once and reuse that session. There's tooling for 2FA and for syncing local cookies up to the cloud.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Structured output:&lt;/strong&gt; Get validated structured data back from a task instead of loose text.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Live preview, recording, and human-in-the-loop:&lt;/strong&gt; Watch the agent's browser in real time, embed it in your own app, replay sessions, and hand control to a human mid-task for approvals, payments, or tricky auth.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Deterministic rerun:&lt;/strong&gt; Run a task once, then re-execute the cached script for effectively $0 in LLM cost.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Integrations:&lt;/strong&gt;An MCP server, n8n node, and webhooks make it easy to wire into agent stacks and existing workflows.&lt;/p&gt;

&lt;h3&gt;
  
  
  Why AI agents use it
&lt;/h3&gt;

&lt;p&gt;For a browser-based agent, the browser is the "hands." An assistant researching a topic might be told "Go to Hacker News and pull today's top posts," let Browser Use launch a stealth Chromium, observe the page, decide the next action, click, and continue. The loop repeats until the task is done, and because it's real Chromium with real proxies, it can reach sites that reject naive scrapers.&lt;/p&gt;

&lt;h3&gt;
  
  
  How Browser Use differs from Mobilerun
&lt;/h3&gt;

&lt;p&gt;The biggest distinction is the environment each one automates. Browser Use only ever sees what's inside a web browser. Mobilerun controls the whole mobile device.&lt;/p&gt;

&lt;h4&gt;
  
  
  Browser Use's view of the world
&lt;/h4&gt;

&lt;p&gt;Browser Use runs Chromium locally or in the cloud which means it operates entirely within the browser. Browseruse agent can navigate, click buttons, fill forms, read page content, execute JavaScript, take screenshots, and upload or download files. What it cannot do is leave the browser: it can't install a native Android or iOS app, open WhatsApp, receive an SMS or push notification, grant OS-level permissions, toggle Wi-Fi, or open device Settings. All of that happens at the device/OS level, outside Chromium. For SMS- or app-based 2FA, the practical answer is a human in the loop or a stored credential/OTP, not the browser reading a text message itself.&lt;/p&gt;

&lt;h4&gt;
  
  
  Mobilerun's view of the world
&lt;/h4&gt;

&lt;p&gt;Mobilerun runs AI agents that control real Android and iOS devices in its cloud or on your own hardware. The agent gets a natural-language goal like "open Settings and turn on dark mode" and taps, swipes, and types its way there. It controls the entire device: the home screen, Chrome, the Play Store, WhatsApp, Settings, Files, notifications, native apps, and system UI. It can install and uninstall apps, grant or revoke Android runtime permissions, read the accessibility UI tree, set GPS location, timezone, and locale, manage eSIMs and proxies, and even drive the device's own Chrome over CDP when a task does need the browser. An agent moves freely across all of it as part of a single workflow.&lt;/p&gt;

&lt;h4&gt;
  
  
  A concrete example
&lt;/h4&gt;

&lt;p&gt;A workflow that crosses app boundaries shows the gap clearly:&lt;br&gt;
_&lt;/p&gt;

&lt;blockquote&gt;
&lt;p&gt;Open Play Store → install an app → grant permissions → open Gmail → retrieve an OTP → switch back to the app → verify the account → enable notifications → parse the screen data.&lt;br&gt;
_&lt;/p&gt;
&lt;/blockquote&gt;

&lt;p&gt;Browser Use can't run this end to end, because most of it happens outside the browser. Mobilerun is designed exactly for it.&lt;br&gt;
By contrast, a typical Browser Use agent stays entirely on the web: open LinkedIn, search for a company, extract employee names, and download a CSV.&lt;/p&gt;

&lt;p&gt;A Mobilerun agent is device-first: install TikTok, create an account, receive an OTP, complete onboarding, upload a video, return to TikTok, and publish.&lt;/p&gt;

&lt;h4&gt;
  
  
  Underlying automation model
&lt;/h4&gt;

&lt;p&gt;Browser Use operates through the browser. In Browser mode it exposes a raw browser over the Chrome DevTools Protocol (CDP), the same protocol Playwright, Puppeteer, and Selenium speak, giving access to the DOM, network events, and console logs. In Agent mode it wraps that in an AI loop.&lt;/p&gt;

&lt;p&gt;Mobilerun operates at the mobile device level. Rather than being limited to a browser's DOM, it works from the device's a11y UI tree and screenshots across native apps, web views, and system screens, executing real taps with stealth mode that emulates human-like typing speed, jitter, and curved swipe paths.&lt;/p&gt;

&lt;h4&gt;
  
  
  Scaling
&lt;/h4&gt;

&lt;p&gt;Both platforms are built for concurrency, but they scale different resources. Browser Use scales stealth browser sessions on managed cloud infrastructure. Mobilerun scales fleets of real or cloud-hosted mobile devices.&lt;/p&gt;

&lt;h4&gt;
  
  
  Open source and self-hosting
&lt;/h4&gt;

&lt;p&gt;Both have an open-source core. Browser Use's library runs locally against your own LLM key, with the Cloud as the managed path to production. Mobilerun's framework runs the open-source mobilerun package on your own machine against your own Android device over adb, again with your own LLM key, while its Cloud offers hosted devices billed through credits. In both cases: run it yourself for control, or use the cloud to skip the infrastructure.&lt;/p&gt;

&lt;h3&gt;
  
  
  When to use which
&lt;/h3&gt;

&lt;p&gt;Choose Browser Use when your workflow lives entirely on the web: large-scale scraping, browser-based AI agents, end-to-end web testing, form automation, data extraction, or any task that needs to reach protected sites and scale across many concurrent browser sessions.&lt;br&gt;
Choose Mobilerun when you need to automate Android or iOS apps, your workflow crosses multiple apps, you need device features like notifications, permissions, GPS, SIM/eSIM, or file storage, or you're testing and operating mobile apps end to end.&lt;/p&gt;




&lt;h3&gt;
  
  
  Can they complement each other?
&lt;/h3&gt;

&lt;p&gt;Yes. They're more complementary than competitive, unless the task is strictly browser automation. In some architectures they handle different parts of the same workflow. A core AI agent might use Browser Use to gather information from websites while Mobilerun handles the mobile portion: installing an app, signing in with an OTP, validating push notifications.&lt;br&gt;
The takeaway is the one we started with. Browser Use gives your agent a browser; Mobilerun gives it a phone. Pick based on where the work actually happens.&lt;/p&gt;

</description>
      <category>ai</category>
      <category>webscraping</category>
      <category>selenium</category>
      <category>automation</category>
    </item>
    <item>
      <title>How to Automate Apps With No API?</title>
      <dc:creator>Priya Negi</dc:creator>
      <pubDate>Thu, 09 Jul 2026 09:01:18 +0000</pubDate>
      <link>https://dev.to/priya_negi_9ffd29931ea408/how-to-automate-apps-with-no-api-2m6d</link>
      <guid>https://dev.to/priya_negi_9ffd29931ea408/how-to-automate-apps-with-no-api-2m6d</guid>
      <description>&lt;p&gt;I've hit this wall more times than I can count. I need to post to a creator account, verify an SMS code on a virtual phone, or stitch a mobile workflow into a backend pipeline. Then I go looking for the API and find one of three things: there isn't one, there is one but it's locked behind a partnership form, or there is one but it's missing the exact thing I need :(&lt;/p&gt;

&lt;p&gt;For a long time, the answer was "tough luck, scrape the UI." I think that answer is finally changing, because I think now the AI agents have gotten good enough to drive a phone the same way I would. This post is about how that actually works in practice.&lt;/p&gt;




&lt;h2&gt;
  
  
  Why so many apps don't have APIs
&lt;/h2&gt;

&lt;p&gt;Let's talk about why this gap exists. Most consumer apps—banking, social, messaging, dating don't ship public APIs because their business model wants you to use the app not the web.&lt;/p&gt;

&lt;p&gt;APIs introduce things they don't want like scraping, abuse, churn from third-party clients, and it creates regulatory headaches. Even when an API exists (eg. Instagram Graph, WhatsApp Business, the various fintech sandboxes), it's almost always a narrow slice of what the app itself can do.&lt;/p&gt;

&lt;p&gt;So if I wanted to automate real-world consumer mobile flows, an API usually wouldn't work. I needed a different abstraction.&lt;/p&gt;

&lt;h3&gt;
  
  
  My old workaround, and why it kept breaking
&lt;/h3&gt;

&lt;p&gt;In the past, I used UI automation frameworks like Appium, Espresso, XCUITest, and Selenium-for-mobile. The problem was they're brittle in exactly the way that matters. I'd write a script that taps a button at specific coordinates, and when the app ships a redesign, the selector moves, and my automation dies.&lt;/p&gt;

&lt;p&gt;I spent a lot of time fixing selectors than actually shipping something. I added retries, then sleeps, then "wait for element," then a custom DOM diff tool, and eventually realized I'd built a small, sad browser inside my test harness.&lt;/p&gt;

&lt;p&gt;The deeper issue is that these tools require me to describe the UI structurally, but apps don't actually have stable structure (iykyk). They have intent. When I look at a banking app, I don't think tap the third button in the second tab, I think open Payouts.&lt;/p&gt;




&lt;h3&gt;
  
  
  What changed now?
&lt;/h3&gt;

&lt;p&gt;LLMs with vision finally made it cheap to do what I do naturally: look at a screen, decide what to tap, do it, look at the result, and repeat. Combine vision with the a11y tree the OS already exposes, and you have a model that can both see the pixels and read the semantic structure, which is much more robust imo. Add a planner that breaks post this clip to an app and respond to comments into the dozen taps and swipes it actually requires, and you have a real mobile agent. That's the category Mobilerun works in.&lt;/p&gt;

&lt;h3&gt;
  
  
  But what is Mobilerun?
&lt;/h3&gt;

&lt;p&gt;Mobilerun is an open-source framework that lets you point an LLM at a real Android or iOS device and tell it what to do.&lt;/p&gt;

&lt;p&gt;It reads the screen via a11y plus a vision model, plans multi-step workflows, and drives the device with taps, swipes, and text input. There's a CLI for one-off tasks, a Python SDK for embedding it into my own code, and a hosted cloud if I don't want to babysit physical phones.&lt;/p&gt;

&lt;p&gt;A few things make Mobilerun interesting if you're a developer evaluating this space:&lt;/p&gt;

&lt;p&gt;Mobilerun is LLM-agnostic which means you can choose whichever LLM best fits your needs. The interesting part imo is that it works not only on emulators but also on real devices. That matters more than it sounds. Many apps like banking, dating, healthcare, anything with high security can sniff for emulator signals, missing SIMs, or suspicious network properties and quietly degrade.&lt;/p&gt;

&lt;p&gt;Running on a real device with a real SIM and a real residential network means the app behaves the way it would in a user's hand. Mobilerun provides exactly that: persistent, dedicated mobile devices with eSIMs and locality, so the automation runs reliably.&lt;/p&gt;




&lt;h3&gt;
  
  
  Where this actually paid off
&lt;/h3&gt;

&lt;p&gt;A few workflows where this approach has beaten either an API integration or traditional UI tests for me:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;End-to-end testing of my own app where flows change weekly and I'm tired of fixing selectors. I describe the test in English, and let the agent figure out the taps.&lt;/li&gt;
&lt;li&gt;Account workflow automation at scale: scheduling posts, replying in DMs, managing creator inboxes across dozens of accounts. Long-lived, multi-profile sessions on real devices.&lt;/li&gt;
&lt;li&gt;Turning a native app into a structured data pipeline. If the data lives only inside an app I don't own, an agent that reads the screen and returns JSON is a perfectly reasonable adapter and often the only one available.&lt;/li&gt;
&lt;li&gt;Customer support: WhatsApp Business, Telegram, SMS. I drive them from a SIM that won't get blocked the way a third-party API gateway might.&lt;/li&gt;
&lt;/ul&gt;




&lt;h3&gt;
  
  
  What's the conclusion?
&lt;/h3&gt;

&lt;p&gt;I don't think the no API problem is going away. If anything, it's getting worse as more value moves inside walled mobile apps. What's changed is that I no longer have to choose between a brittle XPath script and giving up.&lt;/p&gt;

&lt;p&gt;Vision capable LLMs plus a properly engineered runtime (a stable a11y tree, a real device, structured output, and a planner that recovers from failure) make UI-driven automation actually production-grade for the first time.&lt;/p&gt;

&lt;p&gt;If you want to try it, pip install mobilerun is the fastest path. The framework is open source, and the cloud is there when you outgrow your laptop.&lt;/p&gt;

</description>
      <category>opensource</category>
      <category>mobile</category>
      <category>ai</category>
      <category>automation</category>
    </item>
    <item>
      <title>I automated my iPhone using this AI agent</title>
      <dc:creator>Priya Negi</dc:creator>
      <pubDate>Thu, 02 Jul 2026 12:31:26 +0000</pubDate>
      <link>https://dev.to/priya_negi_9ffd29931ea408/i-automated-my-iphone-using-this-ai-agent-56pp</link>
      <guid>https://dev.to/priya_negi_9ffd29931ea408/i-automated-my-iphone-using-this-ai-agent-56pp</guid>
      <description>&lt;h1&gt;
  
  
  I automated my iPhone using this AI
&lt;/h1&gt;

&lt;p&gt;I've always envied Android people. Plug in a phone, run a couple of ADB commands, and you've got a bot tapping around your device in minutes. iOS never let me have that. Apple's sandboxing means there's no official way to remotely drive a physical iPhone — so for a long time, "automate my iPhone" just wasn't a sentence I could act on.&lt;/p&gt;

&lt;p&gt;That changed when I found Mobilerun. It lets you connect your own iPhone to the cloud and hand it over to AI agents that tap, type, and navigate apps like a real person would, end to end. I decided to set it up on my own phone and see how far I could get. Here's how it went.&lt;/p&gt;

&lt;h2&gt;
  
  
  What I needed before starting
&lt;/h2&gt;

&lt;p&gt;Before touching any code, I made sure I had:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;A Mobilerun account with a Personal Phone subscription&lt;/li&gt;
&lt;li&gt;A Mac with Xcode installed&lt;/li&gt;
&lt;li&gt;My iPhone, connected via USB&lt;/li&gt;
&lt;li&gt;An Apple ID with signing capability (a free personal team works fine)&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;One thing worth knowing upfront: with a free Apple ID, builds expire after 7 days, so you'll need to rebuild and re-trust periodically, and you can only sign for 3 devices at a time. A paid Apple Developer account ($99/year) removes both limits. I started with my free Apple ID just to test the waters.&lt;/p&gt;

&lt;h2&gt;
  
  
  How this actually works under the hood
&lt;/h2&gt;

&lt;p&gt;Mobilerun controls the iPhone through WebDriverAgent (WDA), an open-source project that exposes input injection and screenshots on iOS. Mobilerun maintains its own fork of it, tuned for higher-quality streaming, lower-latency accessibility tree fetching, and faster touch input. The idea is simple: I build WDA onto my iPhone once with Xcode, and then a CLI tool called mobilerun-ios opens a WebSocket connection to Mobilerun's cloud and keeps my device online.&lt;/p&gt;

&lt;p&gt;Once I understood that, the rest of the setup made a lot more sense. Here's exactly what I did.&lt;/p&gt;

&lt;h2&gt;
  
  
  Step 1: Turning on Developer Mode
&lt;/h2&gt;

&lt;p&gt;Developer Mode is what lets Xcode install and launch development builds on the iPhone. I went to Settings → Privacy &amp;amp; Security → Developer Mode, toggled it on, and restarted the phone when prompted. After reboot, I confirmed the change and I was set.&lt;/p&gt;

&lt;p&gt;One gotcha: if you don't see the Developer Mode entry at all, it's because your iPhone hasn't been connected to a Mac running Xcode yet. Plug it in, open Xcode once, and the option should appear.&lt;/p&gt;

&lt;h2&gt;
  
  
  Step 2: Configuring the iPhone to stay connected
&lt;/h2&gt;

&lt;p&gt;A Personal Phone is meant to stay online for hours or even days, so I had to change three settings that make the difference between a connection that survives and one that needs constant babysitting.&lt;/p&gt;

&lt;p&gt;First, I disabled Auto-Lock. If the iPhone locks, the screen goes black and the session drops offline — so I set Settings → Display &amp;amp; Brightness → Auto-Lock to Never.&lt;/p&gt;

&lt;p&gt;Second, I turned on automatic time zone under Settings → General → Date &amp;amp; Time → Set Automatically. This keeps the device's time zone in sync with its simulated location; setting it manually just doesn't work on non-jailbroken devices.&lt;/p&gt;

&lt;p&gt;Third — and this one I thought hard about — I removed the passcode. WDA's host session occasionally crashes or expires, and Mobilerun restarts it automatically, but only if there's no passcode in the way. Otherwise the relaunched session lands on the lock screen and just sits there until someone manually unlocks it. Since I wanted this phone to run unattended, I turned off the passcode under Settings → Face ID &amp;amp; Passcode → Turn Passcode Off.&lt;/p&gt;

&lt;p&gt;I want to flag this clearly: removing the passcode disables Face ID, Apple Pay, and some iCloud features. I used a dedicated automation phone for this, not my daily driver, and I'd recommend the same to anyone trying this.&lt;/p&gt;

&lt;h2&gt;
  
  
  Step 3: Building and installing WebDriverAgent
&lt;/h2&gt;

&lt;p&gt;This was, by far, the trickiest part of the whole process — and most connection problems I hit later traced straight back to signing or trust issues here. I took it slow.&lt;/p&gt;

&lt;p&gt;I cloned Mobilerun's WDA fork:&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight shell"&gt;&lt;code&gt;git clone &lt;span class="nt"&gt;--branch&lt;/span&gt; v1.1.0 https://github.com/droidrun/WebDriverAgent
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;(The upstream Appium WebDriverAgent also works, but with higher latency and lower streaming FPS, so I stuck with Mobilerun's fork.)&lt;/p&gt;

&lt;p&gt;Then I:&lt;/p&gt;

&lt;ol&gt;
&lt;li&gt;Opened WebDriverAgent.xcodeproj in Xcode&lt;/li&gt;
&lt;li&gt;Selected my connected iPhone as the run destination&lt;/li&gt;
&lt;li&gt;Chose the WebDriverAgentRunner scheme&lt;/li&gt;
&lt;li&gt;For both the WebDriverAgentRunner and WebDriverAgentBroadcast targets, opened Signing &amp;amp; Capabilities, ticked Automatically manage signing, and picked my Apple ID / Team (WebDriverAgentBroadcast is the extension that enables high-FPS screen streaming — skipping it fails the build, so don't skip it)&lt;/li&gt;
&lt;li&gt;Pressed Cmd+U to build-for-testing&lt;/li&gt;
&lt;li&gt;On the iPhone, trusted the certificate under Settings → General → VPN &amp;amp; Device Management → tapped my team → Trust&lt;/li&gt;
&lt;/ol&gt;

&lt;p&gt;I ran into both of the classic snags here. First, "Failed to register bundle identifier" — bundle IDs have to be unique per Apple ID, so I appended a suffix to the runner's ID (like com.facebook.WebDriverAgentRunner.) and mirrored it in the extension as com.facebook.WebDriverAgentRunner..xctrunner.broadcast. Second, "Could not launch WebDriverAgentRunner" on my first Cmd+U — this just meant the certificate wasn't trusted yet. I trusted it on the device and pressed Cmd+U again, and it went through.&lt;/p&gt;

&lt;h2&gt;
  
  
  Step 4: Installing the mobilerun-ios CLI
&lt;/h2&gt;

&lt;p&gt;With WDA built, I installed the CLI. Homebrew was the easiest route for me:&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight shell"&gt;&lt;code&gt;brew &lt;span class="nb"&gt;install &lt;/span&gt;droidrun/tap/mobilerun-ios
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;There's also a curl install if you'd rather skip Homebrew:&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight shell"&gt;&lt;code&gt;curl &lt;span class="nt"&gt;-fsSL&lt;/span&gt; https://media.mobilerun.ai/releases/mobilerun-ios/install.sh | sh
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;I confirmed it installed correctly with:&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight shell"&gt;&lt;code&gt;mobilerun-ios &lt;span class="nt"&gt;--version&lt;/span&gt;
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;h2&gt;
  
  
  Step 5: Logging in
&lt;/h2&gt;

&lt;p&gt;Next:&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight shell"&gt;&lt;code&gt;mobilerun-ios login
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;The CLI printed a short code and opened a verification page in my browser. I approved it there, then confirmed everything worked with mobilerun-ios whoami.&lt;/p&gt;

&lt;p&gt;If you're setting this up in CI or a headless environment, you can skip the browser flow entirely and use an API key instead:&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight shell"&gt;&lt;code&gt;&lt;span class="nb"&gt;export &lt;/span&gt;&lt;span class="nv"&gt;MOBILERUN_IOS_TOKEN&lt;/span&gt;&lt;span class="o"&gt;=&lt;/span&gt;dr_sk_your_api_key
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;h2&gt;
  
  
  Step 6: Connecting the iPhone
&lt;/h2&gt;

&lt;p&gt;With my iPhone plugged in and unlocked, I listed available devices:&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight shell"&gt;&lt;code&gt;mobilerun-ios list
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;Which showed something like:&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;UDID                                      NAME             TYPE    OS     STATE    PORTAL
00008020-001A2B3C4D5E6F70                 My iPhone        real    18.2   ready    —
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;I copied the UDID and started the connection:&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight shell"&gt;&lt;code&gt;mobilerun-ios 00008020-001A2B3C4D5E6F70
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;Leaving the UDID off would connect every attached iPhone instead. The command keeps the device online for as long as it keeps running — Ctrl+C ends the session. For a setup I wanted to leave running in the background, I used the detach flag instead:&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight shell"&gt;&lt;code&gt;mobilerun-ios &lt;span class="nt"&gt;-d&lt;/span&gt; 00008020-001A2B3C4D5E6F70
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;This printed a PID and a log path, then exited cleanly. I could stop it later with mobilerun-ios stop.&lt;/p&gt;

&lt;h2&gt;
  
  
  Step 7: Running my first task
&lt;/h2&gt;

&lt;p&gt;I opened the Devices page in the Mobilerun dashboard, and there it was — my iPhone, showing up as a connected Personal Phone. From there I went into the Playground, selected my device, and kicked off a task to confirm everything worked end to end. It did. My iPhone was now something an AI agent could actually drive, from anywhere.&lt;/p&gt;

&lt;h2&gt;
  
  
  Problems I hit (and how I fixed them)
&lt;/h2&gt;

&lt;p&gt;A few things tripped me up along the way, so I'm listing them here in case they help:&lt;/p&gt;

&lt;p&gt;WebDriverAgentRunner crashing on launch usually meant I needed to re-sign the runner target in Xcode and confirm the certificate was trusted before hitting Cmd+U again.&lt;/p&gt;

&lt;p&gt;When mobilerun-ios list showed no devices, it was almost always one of three things: the cable was charge-only instead of a proper data cable, the iPhone was locked, or I hadn't accepted the "Trust This Computer" prompt.&lt;/p&gt;

&lt;p&gt;Auth failures were solved by re-running mobilerun-ios login, or, for API keys, double-checking that MOBILERUN_IOS_TOKEN was actually exported in the same shell I was working in.&lt;/p&gt;

&lt;p&gt;If the screen went black mid-session, it was Auto-Lock creeping back on — setting it back to Never fixed it every time.&lt;/p&gt;

&lt;p&gt;And if the connection dropped after several hours and the device just sat on the lock screen, it meant the WDA session had restarted but a passcode was blocking it. Unlocking manually solved it in the moment; removing the passcode solved it for good on an unattended setup.&lt;/p&gt;

&lt;p&gt;One more thing worth knowing: dumping TikTok's accessibility tree times out and crashes the automation session, so I've been avoiding TikTok tasks for now.&lt;/p&gt;

&lt;h2&gt;
  
  
  What I took away from this
&lt;/h2&gt;

&lt;p&gt;Going from a stock iPhone to a cloud-connected automation device took Developer Mode, one Xcode build of WebDriverAgent, and a single CLI command. The Xcode signing step ate up the most time and patience, but it's a one-time cost — or a once-a-week one, if you're running on a free Apple ID like I was.&lt;/p&gt;

&lt;p&gt;If you want to go deeper, Mobilerun's full documentation on connecting an iPhone is here: &lt;a href="https://docs.mobilerun.ai/guides/connect-iphone" rel="noopener noreferrer"&gt;docs.mobilerun.ai/guides/connect-iphone&lt;/a&gt;&lt;/p&gt;

</description>
      <category>ai</category>
      <category>ios</category>
      <category>mobile</category>
      <category>automation</category>
    </item>
    <item>
      <title>Browserbase vs Mobilerun :Detailed comparison</title>
      <dc:creator>Priya Negi</dc:creator>
      <pubDate>Thu, 02 Jul 2026 11:43:04 +0000</pubDate>
      <link>https://dev.to/priya_negi_9ffd29931ea408/browserbase-vs-mobilerundetailed-comparison-530k</link>
      <guid>https://dev.to/priya_negi_9ffd29931ea408/browserbase-vs-mobilerundetailed-comparison-530k</guid>
      <description>&lt;p&gt;If you're building AI agents or automation pipelines, you'll eventually hit a fork in the road: do you need to automate a browser, or do you need to automate a device? Browserbase and Mobilerun sit on opposite sides of that fork. The simplest way to hold the difference in your head is this: Browserbase gives an AI agent a browser. Mobilerun gives an AI agent an entire phone. That sounds like a small distinction, but architecturally the two are solving very different problems.&lt;/p&gt;

&lt;p&gt;Here's how each works, where they shine, and how to choose.&lt;/p&gt;

&lt;h2&gt;
  
  
  What is Browserbase?
&lt;/h2&gt;

&lt;p&gt;Browserbase is a complete platform for building and deploying agents that browse and interact with the web like humans. A single API key gives your agent six capabilities: cloud Browsers, Search, Fetch (page retrieval as clean markdown), Functions (deploy agents next to the browser), a Model Gateway (access major LLMs through one endpoint), and Agent Identity (getting past bot detection, CAPTCHAs, and auth walls). It's positioned as one platform replacing 5+ vendors, with one bill and one debugger.&lt;/p&gt;

&lt;h2&gt;
  
  
  What Browserbase provides
&lt;/h2&gt;

&lt;p&gt;Cloud browsers. Every POST /session launches an isolated Chrome with a fresh profile and a remote debugging endpoint your automation connects to.&lt;/p&gt;

&lt;p&gt;Session management. Each session has its own cookies, local storage, and IP. State can be reused across sessions via Contexts, or discarded.&lt;/p&gt;

&lt;p&gt;Framework compatibility. Works with Playwright, Puppeteer, and Selenium with minimal code changes. Browserbase also makes its own AI-native SDK, Stagehand (natural-language selectors, self-healing actions), which it recommends as the default for agent workflows.&lt;/p&gt;

&lt;p&gt;Recordings. Every session is automatically recorded (via rrweb) - clicks, navigation, console logs - invaluable for debugging agents.&lt;/p&gt;

&lt;p&gt;Screenshots and artifacts. Stores screenshots, page HTML, and network logs to diagnose failures.&lt;/p&gt;

&lt;p&gt;Proxy support. Configure residential or datacenter proxies per session without managing them yourself.&lt;/p&gt;

&lt;p&gt;Parallel browsers. Need hundreds of Chrome instances? Create that many sessions through the API; Browserbase handles scheduling, infrastructure, cleanup, and lifecycle.&lt;/p&gt;

&lt;p&gt;Observability. A Session Inspector / Live View layer lets you watch sessions in real time and replay them.&lt;/p&gt;

&lt;h2&gt;
  
  
  Why AI agents use it
&lt;/h2&gt;

&lt;p&gt;For a browser-based agent, the browser is the "hands." An assistant booking a flight might prompt "Go to Expedia," let Browserbase launch Chrome, have Playwright execute actions, observe the page, decide the next action, click Search, and continue. The loop repeats until the task is done.&lt;/p&gt;

&lt;h2&gt;
  
  
  How Browserbase differs from Mobilerun
&lt;/h2&gt;

&lt;p&gt;The biggest distinction is the environment each one automates. Browserbase only ever sees what's inside Chrome. Mobilerun controls the whole mobile device.&lt;/p&gt;

&lt;h2&gt;
  
  
  Browserbase's view of the world
&lt;/h2&gt;

&lt;p&gt;Browserbase runs Chrome in the cloud, so it operates entirely within the browser: HTML, CSS, JavaScript, and the DOM. An agent can click buttons, fill forms, read page content, execute JavaScript, take screenshots, and upload or download files. It cannot install native apps, open WhatsApp, receive an SMS, grant Android permissions, toggle Wi-Fi, open device Settings, or test push notifications - all of that happens at the device/OS level, outside the browser. (For SMS-based 2FA, the workaround is a human in the loop via Session Live View, not Browserbase reading the text itself.)&lt;/p&gt;

&lt;h2&gt;
  
  
  Mobilerun’s view of the world
&lt;/h2&gt;

&lt;p&gt;&lt;a href="https://blog.mobilerun.ai/posts/browserbase-vs-mobilerun" rel="noopener noreferrer"&gt;Mobilerun&lt;/a&gt; controls the entire device including the home screen, Chrome, the Play Store, WhatsApp, Settings, Camera, Files, notifications, native apps, and system UI. An agent can move freely between all of them as part of a single workflow.&lt;/p&gt;

&lt;h2&gt;
  
  
  A concrete example
&lt;/h2&gt;

&lt;p&gt;A workflow that crosses app boundaries shows the gap clearly:&lt;/p&gt;

&lt;p&gt;Open Play Store → Install an app → Grant permissions → Open Gmail → Retrieve OTP → Switch back to the app →Verify account → Enable notifications → Parse the screen data&lt;/p&gt;

&lt;p&gt;Browserbase can't run this end to end, because much of it happens outside Chrome. Mobilerun is designed exactly for it.&lt;/p&gt;

&lt;p&gt;By contrast, a typical Browserbase agent stays entirely inside Chrome, opens LinkedIn, searches for a company, extracts employee names, and downloads a CSV. &lt;/p&gt;

&lt;p&gt;Mobilerun agent is device-first, installing TikTok, creating an account, receiving an OTP, complete onboarding, upload a video, switch to Photos, edit media, return to TikTok, and publish, spanning multiple apps.&lt;/p&gt;

&lt;h2&gt;
  
  
  Underlying automation model
&lt;/h2&gt;

&lt;p&gt;Browserbase typically relies on browser automation protocols such as the Chrome DevTools Protocol (CDP), which expose the browser's internal structure i.e. DOM, network events, console logs. &lt;/p&gt;

&lt;p&gt;Mobilerun operates at the mobile device level. Rather than being limited to a browser's DOM, it interacts with the rendered UI across native apps, web views, and system screens, letting an agent automate complete mobile experiences.&lt;/p&gt;

&lt;h2&gt;
  
  
  Scaling
&lt;/h2&gt;

&lt;p&gt;Both platforms are built for many concurrent sessions, but they scale different resources. Browserbase scales hundreds or thousands of browser instances. Mobilerun scales fleets of real mobile devices or cloud-connected phones.&lt;/p&gt;

&lt;h2&gt;
  
  
  When to use which
&lt;/h2&gt;

&lt;p&gt;Choose Browserbase when your workflow lives entirely in a web browser: large-scale web scraping, browser-based AI agents, end-to-end web testing, form automation, data extraction, or browser workflows that need to scale across many concurrent sessions.&lt;/p&gt;

&lt;p&gt;Choose Mobilerun when you need to automate Android or iPhone apps, your workflow crosses multiple apps, you need device features like notifications, permissions, camera, or file storage, or you're testing and operating mobile apps end to end.&lt;/p&gt;

&lt;p&gt;If your automation needs to touch native mobile apps, device settings, notifications, cameras, GPS, or other operating-system features, a mobile automation platform is the better fit.&lt;/p&gt;

&lt;h2&gt;
  
  
  Can they complement each other?
&lt;/h2&gt;

&lt;p&gt;Yes. They're more complementary than competitive, unless the task is strictly browser automation. In some architectures they handle different parts of the same workflow. A backend AI agent might use Browserbase to gather information from websites while Mobilerun handles the mobile portion: installing an app, signing in with an OTP, validating push notifications, or completing an in-app purchase flow.&lt;/p&gt;

&lt;p&gt;The takeaway is the one we started with. Browserbase gives your agent a browser; Mobilerun gives it a phone. Pick based on where the work actually happens.&lt;/p&gt;

</description>
    </item>
    <item>
      <title>BrowserStack vs Mobilerun</title>
      <dc:creator>Priya Negi</dc:creator>
      <pubDate>Thu, 25 Jun 2026 06:29:08 +0000</pubDate>
      <link>https://dev.to/priya_negi_9ffd29931ea408/browserstack-vs-mobilerun-4a74</link>
      <guid>https://dev.to/priya_negi_9ffd29931ea408/browserstack-vs-mobilerun-4a74</guid>
      <description>&lt;p&gt;At first glance, BrowserStack and Mobilerun can look like similar tools. Both run on real or virtual devices in the cloud, both interact with apps, and both promise to save time wasted on tedious manual work. But put them side by side and you can see they are quite different. One is built to test software. The other is built to operate it.&lt;/p&gt;

&lt;p&gt;Here's a clear breakdown of what each does and when to reach for it.&lt;/p&gt;

&lt;h3&gt;
  
  
  What is BrowserStack?
&lt;/h3&gt;

&lt;p&gt;BrowserStack is a cloud-based software testing platform that lets developers and QA teams test websites and mobile apps across thousands of real devices, browsers, and operating systems. Its core promise is simple: you no longer need to buy and maintain expensive in-house devices.&lt;/p&gt;

&lt;p&gt;The platform's strengths lie mostly in quality assurance. Teams can instantly access a large cloud of real Android and iOS devices, along with desktop browsers, to verify that their applications behave correctly across different environments. &lt;/p&gt;

&lt;p&gt;Developers can manually interact with apps to validate user experiences, while automated test suites built with tools such as Selenium, Playwright, Cypress, and Appium can be executed at scale. BrowserStack also provides visual testing, accessibility testing, performance testing, and integrations with CI/CD pipelines so issues can be caught before software reaches production.&lt;/p&gt;

&lt;p&gt;In short, BrowserStack exists to find bugs, compatibility issues, performance bottlenecks, and accessibility problems before real users ever see them.&lt;/p&gt;

&lt;h3&gt;
  
  
  What is Mobilerun?
&lt;/h3&gt;

&lt;p&gt;Mobilerun is built for AI-driven task execution and automation. Instead of testing an app's code, it gives an AI agent a virtual phone that it can use to open apps, understand what is happening on the screen, and carry out tasks the way a human would.&lt;/p&gt;

&lt;p&gt;The key difference is how the work gets done. With Mobilerun, instead of writing scripts that define every action in advance, you describe the goal in plain English, invoke it through an API, or integrate it into a larger agent workflow. The AI then interprets the interface and determines what actions it needs to take in order to accomplish the objective.&lt;/p&gt;

&lt;p&gt;This makes it suitable for operational workflows such as collecting data from mobile-only apps, managing social media accounts, monitoring marketplace listings, completing forms, onboarding customers, or carrying out repetitive tasks that span multiple applications. The goal is not to verify that software behaves correctly. The goal is to get useful work done.&lt;/p&gt;

&lt;h3&gt;
  
  
  Why not just automate the website?
&lt;/h3&gt;

&lt;p&gt;A common question is why mobile automation is necessary when browser automation tools already exist.&lt;/p&gt;

&lt;p&gt;The answer is that many modern businesses are increasingly mobile-first. Platforms such as Instagram, TikTok, ride-sharing apps, delivery apps, banking apps, and various marketplaces often release features in their mobile apps before making them available elsewhere. In some cases, the web version offers limited functionality, while in others there may be no public API available at all.&lt;/p&gt;

&lt;p&gt;As a result, important workflows often exist exclusively inside mobile applications. Traditional browser automation excels when a workflow is available on a website, but it cannot always access mobile-only experiences. Mobilerun addresses this gap by allowing AI agents to operate directly inside mobile environments.&lt;/p&gt;

&lt;h3&gt;
  
  
  API Automation vs UI Automation
&lt;/h3&gt;

&lt;p&gt;Traditional automation works best when software exposes APIs. APIs provide structured access to data and actions, making them highly reliable and efficient for developers.&lt;/p&gt;

&lt;p&gt;The challenge is that many real-world workflows involve systems with incomplete APIs, restricted APIs, or no APIs at all. Sometimes the only way to perform a task is through the user interface itself.&lt;/p&gt;

&lt;p&gt;Mobilerun approaches automation from the UI layer. Instead of requiring backend access, an AI agent can observe the screen, interpret the current state of the application, and interact with buttons, forms, menus, and other interface elements much like a human user would. This allows automation to be applied even in environments where traditional integrations are unavailable.&lt;/p&gt;

&lt;h2&gt;
  
  
  How the Two Differ
&lt;/h2&gt;

&lt;h3&gt;
  
  
  Core Purpose
&lt;/h3&gt;

&lt;p&gt;BrowserStack is fundamentally a QA platform. Its purpose is to help engineering teams verify that software behaves correctly before release. Teams use it to identify bugs, validate compatibility across devices and browsers, test accessibility requirements, and ensure new code changes do not introduce regressions.&lt;/p&gt;

&lt;p&gt;Mobilerun serves a different purpose. Rather than validating software, it uses the software as a real human would. It gives AI agents the ability to perform tasks within applications and complete workflows that would otherwise require human interaction.&lt;/p&gt;

&lt;h3&gt;
  
  
  How Automation is Driven
&lt;/h3&gt;

&lt;p&gt;BrowserStack automation relies on predefined test scripts and element locators. Engineers explicitly define what actions should occur and what outcomes should be verified. While this approach is highly reliable for testing, changes to an application's structure, identifiers, or workflow often require updates to the automation scripts.&lt;/p&gt;

&lt;p&gt;Mobilerun uses AI agents that combine vision, reasoning, and tool use. Instead of following a rigid sequence of instructions, the agent evaluates what it sees on the screen and decides what action should happen next. This allows it to adapt more naturally when interfaces evolve or workflows change.&lt;/p&gt;

&lt;h3&gt;
  
  
  Cross-App Capabilities
&lt;/h3&gt;

&lt;p&gt;BrowserStack is designed to validate application behavior. While test automation can involve multiple browsers, devices, or applications, the objective remains verification and testing.&lt;/p&gt;

&lt;p&gt;Mobilerun is designed around completing operational workflows. An agent can move between applications when necessary, carrying information from one app to another. For example, it could open a banking application, retrieve an OTP from a messaging app, return to the banking app, and complete the transaction. These types of workflows mirror how people actually use mobile devices in everyday operations.&lt;/p&gt;

&lt;h3&gt;
  
  
  Example: Booking a Hotel
&lt;/h3&gt;

&lt;p&gt;A simple hotel-booking scenario highlights the distinction.&lt;/p&gt;

&lt;p&gt;If you were using BrowserStack, the goal would be to verify that the hotel application works correctly. A QA engineer might test whether search results load properly, whether room listings appear as expected, whether forms accept input correctly, and whether checkout completes without errors. Success is measured by whether the application behaves as intended.&lt;/p&gt;

&lt;p&gt;With Mobilerun, the QA engineer can do the same but in an automated way. Instead of testing the booking flow, an AI agent would use the application to accomplish a real outcome. It might search for hotels in Goa, compare available options, choose one based on specified criteria, and complete the booking process. Success is measured by whether the task gets completed.&lt;/p&gt;

&lt;p&gt;The same application is involved in both scenarios, but the objective is fundamentally different.&lt;/p&gt;

&lt;h2&gt;
  
  
  Side-by-Side Comparison
&lt;/h2&gt;

&lt;p&gt;&lt;a href="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.us-east-2.amazonaws.com%2Fuploads%2Farticles%2Fo9dg54u7ln7s228a3cfz.png" class="article-body-image-wrapper"&gt;&lt;img src="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.us-east-2.amazonaws.com%2Fuploads%2Farticles%2Fo9dg54u7ln7s228a3cfz.png" alt=" " width="800" height="533"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;h2&gt;
  
  
  Where Each Shines
&lt;/h2&gt;

&lt;p&gt;BrowserStack is strongest when QA is the main direction. It provides broad device coverage, mature testing frameworks, visual regression testing, accessibility validation, and performance testing capabilities. For teams preparing software releases, these capabilities make it an essential part of the development lifecycle.&lt;/p&gt;

&lt;p&gt;Mobilerun shines when the objective is automation rather than manual validation. It is particularly useful for mobile-first workflows, cross-app operations, app-based data collection, and AI agents that need to interact with applications as part of larger business processes. It enables automation in environments where traditional APIs or browser-based approaches are insufficient.&lt;/p&gt;

&lt;p&gt;Neither platform is intended to replace the other. BrowserStack is not designed to run business operations, and Mobilerun is not designed to replace comprehensive and deterministic QA testing frameworks.&lt;/p&gt;

&lt;h2&gt;
  
  
  Can They Be Used Together?
&lt;/h2&gt;

&lt;p&gt;In many organizations, the two tools could be complementary rather than competitive.&lt;/p&gt;

&lt;p&gt;A development team might use BrowserStack before release to ensure an application works correctly across devices and operating systems. After the application is live, the same organization could use Mobilerun to automate workflows inside that application, allowing AI agents to perform operational tasks on behalf of users or internal teams. The same organisation can use automated AI workflows to test the app before every minor release or update assisting QA engineers.&lt;/p&gt;

&lt;p&gt;One helps ensure the software is reliable. The other helps put the software to work.&lt;/p&gt;

&lt;h2&gt;
  
  
  Which One Do You Need?
&lt;/h2&gt;

&lt;p&gt;Reach for BrowserStack when your goal is a traditional QA. If you are shipping a release and need to verify that your application behaves correctly across browsers, devices, and operating systems, BrowserStack is built for that purpose.&lt;/p&gt;

&lt;p&gt;Reach for Mobilerun when your goal is getting work done inside applications or to create automatic QA flow that will assist your QA engineers in their work. If you want an AI agent to complete tasks, automate workflows, move across multiple apps, and operate within mobile-first environments, Mobilerun is the better fit.&lt;/p&gt;

</description>
      <category>ai</category>
      <category>webdev</category>
      <category>programming</category>
      <category>automaton</category>
    </item>
    <item>
      <title>How I build my first automation as a non-coder</title>
      <dc:creator>Priya Negi</dc:creator>
      <pubDate>Wed, 01 Apr 2026 06:33:07 +0000</pubDate>
      <link>https://dev.to/priya_negi_9ffd29931ea408/how-i-build-my-first-automation-as-a-non-coder-42dm</link>
      <guid>https://dev.to/priya_negi_9ffd29931ea408/how-i-build-my-first-automation-as-a-non-coder-42dm</guid>
      <description>&lt;p&gt;&lt;a href="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Ffpchyplo9nu2wgvolxtb.png" class="article-body-image-wrapper"&gt;&lt;img src="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Ffpchyplo9nu2wgvolxtb.png" alt=" " width="800" height="446"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;I'll be honest, when I first heard about mobile automation, I pictured lines of incomprehensible code scrolling down a black terminal screen. As someone who barely remembers high school algebra, the thought of programming anything made me want to close my laptop and pretend I never heard the word automation. Okay that was exaggerated. &lt;/p&gt;

&lt;p&gt;But here's the thing, I like listening to people talking about automating this and that. I also wanted to try something. So I looked for some options, and that's when I discovered Droidrun.&lt;/p&gt;

&lt;h2&gt;
  
  
  The Problem with Traditional Automation
&lt;/h2&gt;

&lt;p&gt;Most automation tools expect you to write code or scripts, understand programming logic, learn technical syntax and then debug when things break. Basically configuring at every single step. &lt;br&gt;
( I don’t know these many things, I just asked LLM the problems with traditional automation)&lt;/p&gt;

&lt;p&gt;For someone like me, this felt like being handed a spaceship manual when I just wanted to ride a bike or maybe a scooter.&lt;/p&gt;

&lt;h2&gt;
  
  
  Mobilerun: Automation for non-coders
&lt;/h2&gt;

&lt;p&gt;Mobilerun is the cloud infrastructure of Droidrun, an AI-powered mobile automation framework. But here's the thing, you don't need to know what a framework is to use it.&lt;/p&gt;

&lt;p&gt;Instead of writing code, you just describe what you want in plain English. The AI figures out how to do it. Simple.&lt;/p&gt;

&lt;p&gt;Think of it like this:&lt;/p&gt;

&lt;p&gt;You : Send a WhatsApp message saying hello to John&lt;br&gt;
Mobilerun: Sends a message to John.&lt;/p&gt;

&lt;p&gt;You don’t need to think about what happens in the backend, you just get a task executed as simple as that. &lt;/p&gt;

&lt;h2&gt;
  
  
  My First Automation
&lt;/h2&gt;

&lt;p&gt;Let me walk you through exactly how I set up my first automation without coding anything.&lt;/p&gt;

&lt;h3&gt;
  
  
  What You'll Need
&lt;/h3&gt;

&lt;p&gt;Before we start, here's what you need:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;An Android phone (sorry iOS users, not yet!)&lt;/li&gt;
&lt;li&gt;About 15 minutes&lt;/li&gt;
&lt;li&gt;A Mobilerun account (free to start)&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;That's it. No programming knowledge needed.&lt;/p&gt;

&lt;h3&gt;
  
  
  Step 1: Get the Droidrun Portal APK
&lt;/h3&gt;

&lt;p&gt;The Droidrun Portal APK is like a bridge between your phone and Mobilerun's AI. It allows the AI to see what's on your screen and interact with your apps.&lt;/p&gt;

&lt;p&gt;Here's the complete setup guide for this : &lt;a href="https://docs.droidrun.ai/guides/device-setup" rel="noopener noreferrer"&gt;https://docs.droidrun.ai/guides/device-setup&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;Important: You'll need to enable "Install from Unknown Sources" in your Android settings. Don't worry, the Portal app is open-source and safe. It's like giving your trusted friend the remote control to help you with tasks.&lt;/p&gt;

&lt;h3&gt;
  
  
  Step 2: Set Up Portal Permissions
&lt;/h3&gt;

&lt;p&gt;Once Portal is installed, open it. It will ask for a few permissions:&lt;/p&gt;

&lt;p&gt;Accessibility Service: This lets the AI see what's on your screen and interact with buttons and text fields&lt;br&gt;
Display Over Other Apps: This allows Portal to work in the background while you use other apps&lt;/p&gt;

&lt;p&gt;These permissions sound scary, but they're necessary for automation to work. It's like giving someone permission to use your keyboard and mouse on your behalf.&lt;/p&gt;

&lt;h3&gt;
  
  
  Step 3: Connect to Mobilerun Cloud
&lt;/h3&gt;

&lt;p&gt;Now comes the easy part:&lt;/p&gt;

&lt;ol&gt;
&lt;li&gt;Go to &lt;a href="https://cloud.mobilerun.ai" rel="noopener noreferrer"&gt;cloud.mobilerun.ai&lt;/a&gt;
&lt;/li&gt;
&lt;li&gt;Sign up for a free account (just email and password). &lt;/li&gt;
&lt;li&gt;You'll land on your dashboard&lt;/li&gt;
&lt;li&gt;Look for "Connect Device" or "Add Device"&lt;/li&gt;
&lt;li&gt;On your phone's Portal app, you'll see a "Connect to Cloud" option&lt;/li&gt;
&lt;li&gt;Scan the QR code shown on the Mobilerun website (or enter the code manually)&lt;/li&gt;
&lt;/ol&gt;

&lt;p&gt;And that's it! Your phone is now connected. You'll see it appear as "Online" on your Mobilerun dashboard.&lt;/p&gt;

&lt;p&gt;Note: Make sure to use the same email address to login to mobilerun and portal apk. Otherwise, you won’t be able to see the device in the cloud.&lt;/p&gt;

&lt;h3&gt;
  
  
  Step 4: Your First Automation
&lt;/h3&gt;

&lt;p&gt;Here's where it gets fun. Let's start with something simple automatically saving Instagram posts you like.&lt;/p&gt;

&lt;p&gt;On the Mobilerun dashboard:&lt;/p&gt;

&lt;ol&gt;
&lt;li&gt;In the playground, write the task in plain english. Something like, Open Instagram, go to my saved posts, and unsave them all.&lt;/li&gt;
&lt;li&gt;Select the agent&lt;/li&gt;
&lt;li&gt;Under devices, you can already see the connected device&lt;/li&gt;
&lt;li&gt;Under advanced setting, choose the other relevant settings&lt;/li&gt;
&lt;li&gt;and finally click on Run to start the automation&lt;/li&gt;
&lt;/ol&gt;

&lt;p&gt;That's it. Now your mobile will automatically perform tasks specified by you.&lt;/p&gt;

&lt;h2&gt;
  
  
  What Can You Automate?
&lt;/h2&gt;

&lt;p&gt;Once you've got the basics down, the possibilities are pretty wild. You can automate anything you do on your phone. &lt;/p&gt;

&lt;h2&gt;
  
  
  What I Learned
&lt;/h2&gt;

&lt;p&gt;Building my first automation taught me something important: technology should work for you, not the other way around.&lt;/p&gt;

&lt;p&gt;For years, I thought automation was only for programmers. I was wrong. The real barrier wasn't knowledge, it was that tools were built by developers for developers.&lt;/p&gt;

&lt;p&gt;Mobilerun changes that. It's built for people who just want their phone to do things without becoming a software engineer in the process.&lt;/p&gt;

&lt;h2&gt;
  
  
  Final Thoughts
&lt;/h2&gt;

&lt;p&gt;If you're also someone who wants to run automation or at least try it once, Droidrun is the tool you can use.&lt;br&gt;&lt;br&gt;
You don't need to learn to code.&lt;br&gt;
You don't need to understand how AI works.&lt;br&gt;
You just need 15 minutes and a willingness to try something new.&lt;/p&gt;

&lt;p&gt;Happy Learning.&lt;/p&gt;

</description>
      <category>nocode</category>
      <category>mobile</category>
      <category>androiddev</category>
      <category>automation</category>
    </item>
    <item>
      <title>How I automated LinkedIn with my old phone</title>
      <dc:creator>Priya Negi</dc:creator>
      <pubDate>Sun, 29 Mar 2026 06:31:26 +0000</pubDate>
      <link>https://dev.to/priya_negi_9ffd29931ea408/how-i-automated-linkedin-with-my-old-phone-2fdb</link>
      <guid>https://dev.to/priya_negi_9ffd29931ea408/how-i-automated-linkedin-with-my-old-phone-2fdb</guid>
      <description>&lt;p&gt;&lt;a href="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Fj5ut7xnxm9jhdld7evvd.png" class="article-body-image-wrapper"&gt;&lt;img src="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Fj5ut7xnxm9jhdld7evvd.png" alt=" " width="800" height="446"&gt;&lt;/a&gt;We all have at least one old phone that nobody uses anymore. A Galaxy something or other with a cracked screen protector. A phone that still works fine but hasn't been charged for so many months now. They just sit there, slowly becoming e-waste. Until you turned one into your personal LinkedIn automation agent. &lt;/p&gt;

&lt;p&gt;That’s right. Just an old Android phone and an AI that does all the clicking, scrolling, posting, commenting stuff for me. &lt;/p&gt;

&lt;p&gt;Let me explain. If you've ever tried to automate LinkedIn, you know the deal. Chrome extensions that inject scripts into the page. Cloud tools that log into your account from some random IP in Virginia. Dedicated SaaS platforms charging $99/month to send connection requests. and LinkedIn's crackdown has only gotten worse. People are getting accounts restricted left and right. The problem isn't the automation itself but how most tools do it. They're all browser-based hacks pretending to be you, and anti-bot software has gotten scary good at spotting them.&lt;/p&gt;

&lt;p&gt;So I asked myself what if the automation happened on an actual phone, doing actual taps, like an actual human? &lt;/p&gt;

&lt;p&gt;Here's what I did. I grabbed my old Android device from the drawer, installed the Droidrun APK, and connected it to Mobilerun. That's it. That was the setup. Mobilerun is a platform that lets you automate real Android devices with plain English. You literally tell it what to do and it does it on a real phone, with real taps, real scrolls, real keystrokes. &lt;/p&gt;

&lt;p&gt;I told it to open LinkedIn, go to my feed, and start engaging with posts. Liking. Commenting thoughtful responses (not those cliche Great post bots). Sending connection requests to people in my niche. Checking messages. And because it's happening on a real device with a real screen, LinkedIn sees exactly what it expects: someone using the app normally on their phone. Because that's literally what's happening. The AI is just the one holding the phone. &lt;/p&gt;

&lt;h3&gt;
  
  
  What I Actually Automated:
&lt;/h3&gt;

&lt;p&gt;Here's my daily LinkedIn workflow that now runs without me touching anything:&lt;/p&gt;

&lt;ol&gt;
&lt;li&gt;Morning engagement round: The agent opens LinkedIn, scrolls through my feed, likes relevant posts, and leaves actual comments. Not generic ones contextual comments based on what the post is about.&lt;/li&gt;
&lt;li&gt;Connection requests: Targeted outreach to people in my industry. The agent visits profiles, reads their bio, and sends personalized connection requests.&lt;/li&gt;
&lt;li&gt;Message replies: It checks my LinkedIn inbox and drafts responses. I review the important ones, but for the, thanks for connecting messages it handles it all.&lt;/li&gt;
&lt;li&gt;Content interaction: When I post something, the agent monitors engagement and responds to comments throughout the day.&lt;/li&gt;
&lt;/ol&gt;

&lt;p&gt;All running on a phone that was of no use two weeks ago. &lt;/p&gt;

&lt;p&gt;Watch it in action: &lt;/p&gt;

&lt;p&gt;&lt;a href="https://www.youtube.com/watch?v=LVx_jL8PT4o" rel="noopener noreferrer"&gt;https://www.youtube.com/watch?v=LVx_jL8PT4o&lt;/a&gt; &lt;/p&gt;

&lt;h3&gt;
  
  
  Why This Approach is Different:
&lt;/h3&gt;

&lt;p&gt;Most LinkedIn automation tools work at the API or browser level. They're essentially puppeteering a web session. LinkedIn knows(trust me, you are like this far from getting banned). They track browser fingerprints, unusual session patterns, and IP mismatches. But a real phone running the real LinkedIn app? That's just... a phone. The touch events are real. The screen renders are real. The network requests come from a normal mobile connection. There's nothing to detect because there's nothing fake. And here's the kicker if you don't even have an old phone lying around, Mobilerun offers cloud-hosted real Android devices. Same concept, but you skip the hardware entirely.&lt;/p&gt;

&lt;h3&gt;
  
  
  The Results:
&lt;/h3&gt;

&lt;p&gt;After two weeks of running this:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Connection acceptance rate went up (personalized requests hit different)&lt;/li&gt;
&lt;li&gt;My posts got more early engagement because the agent was actively engaging with others' content (LinkedIn's algorithm rewards that)&lt;/li&gt;
&lt;li&gt;I reclaimed about 40 minutes per day I was spending on manual LinkedIn engagement&lt;/li&gt;
&lt;li&gt;No account warning so far. Because it is an actual device working for me like a real person.&lt;/li&gt;
&lt;/ul&gt;

&lt;h3&gt;
  
  
  Should You Do This?
&lt;/h3&gt;

&lt;p&gt;Look, I'm not telling you to go full bot-mode on LinkedIn. The platform has rules, and mass-spamming connection requests is still a terrible idea whether a human or an AI does it. But thoughtful, measured automation? Engaging with content you'd engage with anyway, just without spending an hour doing it manually? That's not gaming the system. That's just being efficient.&lt;/p&gt;

&lt;p&gt;And if you've got an old phone sitting in a drawer doing nothing... well, now you know what to do with it. &lt;/p&gt;

&lt;p&gt;I talk about AI agents and agentic AI. &lt;/p&gt;

&lt;p&gt;&lt;a href="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Fq1s39uxahthx7k0hug6i.png" class="article-body-image-wrapper"&gt;&lt;img src="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Fq1s39uxahthx7k0hug6i.png" alt=" " width="800" height="446"&gt;&lt;/a&gt;&lt;br&gt;
Get in touch with me on &lt;a href="https://www.linkedin.com/in/priya-negi-b8b4061ab/" rel="noopener noreferrer"&gt;LinkedIn.&lt;/a&gt;&lt;/p&gt;

</description>
      <category>automation</category>
      <category>stealth</category>
      <category>mobileautomation</category>
      <category>ai</category>
    </item>
    <item>
      <title>Tasker Vs Droidrun: Rule based automation vs Agentic AI system</title>
      <dc:creator>Priya Negi</dc:creator>
      <pubDate>Thu, 26 Mar 2026 06:02:51 +0000</pubDate>
      <link>https://dev.to/priya_negi_9ffd29931ea408/tasker-vs-droidrun-rule-based-automation-vs-agentic-ai-system-1ep3</link>
      <guid>https://dev.to/priya_negi_9ffd29931ea408/tasker-vs-droidrun-rule-based-automation-vs-agentic-ai-system-1ep3</guid>
      <description>&lt;p&gt;&lt;a href="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2F0zkc2gr4i20gz7f7hx4a.png" class="article-body-image-wrapper"&gt;&lt;img src="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2F0zkc2gr4i20gz7f7hx4a.png" alt=" " width="800" height="446"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;Mobile automation has been around for quite some time with tools like Tasker and MacroDroid. But the landscape of Android automation has evolved dramatically over the past few years. In this blog, I will examine two distinct paradigms in mobile automation technology.&lt;/p&gt;

&lt;p&gt;Tasker enables users to perform custom actions based on contexts such as time, location, application state, and events. The platform has continuously evolved to adapt with Android's changing ecosystem. &lt;/p&gt;

&lt;p&gt;Droidrun, by contrast, launched in 2025 as an open-source mobile AI agent framework specifically designed to enable natural language control of Android and iOS devices. The framework represents a shift from programmed automation to agent-based control.&lt;/p&gt;

&lt;h2&gt;
  
  
  Tasker vs Droidrun: Approach
&lt;/h2&gt;

&lt;h3&gt;
  
  
  Tasker: Rule-Based Automation
&lt;/h3&gt;

&lt;p&gt;Tasker works as a rule-based automation engine for Android. Users create profiles (trigger conditions) that activate tasks (sequences of actions). This model provides precise automation:&lt;/p&gt;

&lt;p&gt;Profiles: Define when something should happen.  It looks for contexts such as time-based triggers, location changes, application launches, system states, or custom events.&lt;/p&gt;

&lt;p&gt;Tasks: Define what should happen when a profile is triggered for Eg. Modifying system settings, launching applications, manipulating files, sending network requests, or controlling hardware.&lt;/p&gt;

&lt;p&gt;Apart from this Tasker supports variables, which makes it very flexible. It can also create custom interfaces like popups, buttons, menus etc.&lt;/p&gt;

&lt;p&gt;This architecture grants users granular control over Android's operating system, without requiring root access for most operations. Users can also extend capabilities through JavaScript, shell scripts, and Java code execution.&lt;/p&gt;

&lt;h3&gt;
  
  
  Droidrun: Agent-Based Control
&lt;/h3&gt;

&lt;p&gt;Droidrun uses large language models to understand and execute tasks written in natural language. Rather than pre-programmed rules, the system uses AI reasoning to complete objectives:&lt;/p&gt;

&lt;p&gt;Natural Language Commands: Users describe what they want to achieve in natural language command.&lt;br&gt;
UI Understanding: Vision models and accessibility tree parsing enable dynamic interface comprehension&lt;br&gt;
Multi-Step Planning: LLMs decompose complex objectives into sequential actions&lt;br&gt;
Cross-Application Workflows: Agents can navigate between applications to complete integrated tasks.&lt;/p&gt;

&lt;p&gt;This removes the need to write code, letting you automate things just by texting. But it can sometimes behave unpredictably because it relies on AI-generated responses.&lt;/p&gt;

&lt;h2&gt;
  
  
  Feature Comparison
&lt;/h2&gt;

&lt;div class="table-wrapper-paragraph"&gt;&lt;table&gt;
&lt;thead&gt;
&lt;tr&gt;
&lt;th&gt;Dimension&lt;/th&gt;
&lt;th&gt;Tasker&lt;/th&gt;
&lt;th&gt;Droidrun&lt;/th&gt;
&lt;/tr&gt;
&lt;/thead&gt;
&lt;tbody&gt;
&lt;tr&gt;
&lt;td&gt;Core Approach&lt;/td&gt;
&lt;td&gt;Rule-based (IF → THEN)&lt;/td&gt;
&lt;td&gt;AI-driven (intent → execution)&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;Triggers&lt;/td&gt;
&lt;td&gt;Built-in (time, app, events, system)&lt;/td&gt;
&lt;td&gt;No native triggers (manual / external)&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;Actions&lt;/td&gt;
&lt;td&gt;Predefined (400+ actions)&lt;/td&gt;
&lt;td&gt;Decided dynamically by AI&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;UI Automation&lt;/td&gt;
&lt;td&gt;Limited (via plugins)&lt;/td&gt;
&lt;td&gt;Strong (native, vision-based)&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;Ease of Use&lt;/td&gt;
&lt;td&gt;Hard to learn&lt;/td&gt;
&lt;td&gt;Easy to use (after setup)&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;Setup&lt;/td&gt;
&lt;td&gt;Simple&lt;/td&gt;
&lt;td&gt;Complex (Python, ADB, APIs)&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;Execution&lt;/td&gt;
&lt;td&gt;Deterministic (predictable)&lt;/td&gt;
&lt;td&gt;Non-deterministic (can vary)&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;Speed&lt;/td&gt;
&lt;td&gt;Fast (milliseconds)&lt;/td&gt;
&lt;td&gt;Slower (seconds)&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;Adaptability&lt;/td&gt;
&lt;td&gt;Low (breaks on UI change)&lt;/td&gt;
&lt;td&gt;High (adapts to UI changes)&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;Platform&lt;/td&gt;
&lt;td&gt;Android only&lt;/td&gt;
&lt;td&gt;Android + iOS (limited)&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;Internet Needed&lt;/td&gt;
&lt;td&gt;No&lt;/td&gt;
&lt;td&gt;Yes (usually)&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;Privacy&lt;/td&gt;
&lt;td&gt;Fully local&lt;/td&gt;
&lt;td&gt;Cloud-dependent&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;Best For&lt;/td&gt;
&lt;td&gt;System automation, routines&lt;/td&gt;
&lt;td&gt;UI automation, complex workflows&lt;/td&gt;
&lt;/tr&gt;
&lt;/tbody&gt;
&lt;/table&gt;&lt;/div&gt;

&lt;p&gt;Tasker and Droidrun address fundamentally different automation paradigms, making direct comparison challenging.&lt;/p&gt;

&lt;div class="table-wrapper-paragraph"&gt;&lt;table&gt;
&lt;thead&gt;
&lt;tr&gt;
&lt;th&gt;Criteria&lt;/th&gt;
&lt;th&gt;Choose Tasker if you…&lt;/th&gt;
&lt;th&gt;Choose Droidrun if you…&lt;/th&gt;
&lt;/tr&gt;
&lt;/thead&gt;
&lt;tbody&gt;
&lt;tr&gt;
&lt;td&gt;Automation Type&lt;/td&gt;
&lt;td&gt;Need deterministic, repeatable automation&lt;/td&gt;
&lt;td&gt;Need flexible, adaptive automation&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;Operation Mode&lt;/td&gt;
&lt;td&gt;Prefer fully offline operation&lt;/td&gt;
&lt;td&gt;Are okay with internet/API dependency&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;Control Level&lt;/td&gt;
&lt;td&gt;Need precise system-level control&lt;/td&gt;
&lt;td&gt;Need UI-level control across apps&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;Ease of Use&lt;/td&gt;
&lt;td&gt;Can learn structured logic&lt;/td&gt;
&lt;td&gt;Prefer natural language commands&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;Use Case&lt;/td&gt;
&lt;td&gt;Automate device settings, routines&lt;/td&gt;
&lt;td&gt;Automate app workflows, UI tasks&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;App Dependency&lt;/td&gt;
&lt;td&gt;Work with system features/APIs&lt;/td&gt;
&lt;td&gt;Work with apps without APIs&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;Adaptability&lt;/td&gt;
&lt;td&gt;Can manually fix broken automations&lt;/td&gt;
&lt;td&gt;Need automation that adapts automatically&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;Cost Preference&lt;/td&gt;
&lt;td&gt;Want one-time cost&lt;/td&gt;
&lt;td&gt;Okay with ongoing API costs&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;Platform&lt;/td&gt;
&lt;td&gt;Only need Android&lt;/td&gt;
&lt;td&gt;Need Android + iOS support&lt;/td&gt;
&lt;/tr&gt;
&lt;/tbody&gt;
&lt;/table&gt;&lt;/div&gt;

&lt;p&gt;For many users, the tools are complementary rather than competitive. Tasker excels at system automation and trigger-based actions, while Droidrun addresses UI navigation and adaptive workflows. The optimal approach may involve both: Tasker for predictable system control, Droidrun for intelligent application interaction.&lt;/p&gt;

&lt;p&gt;The broader question is rather more philosophical: Should mobile automation require users to program specific behaviors, or should AI agents interpret human intent? Tasker represents the former; Droidrun explores the latter. Both approaches have merit, and the mobile automation landscape is richer for their coexistence.&lt;/p&gt;

&lt;p&gt;I talk about mobile app automation. Follow me on &lt;a href="https://www.linkedin.com/feed/" rel="noopener noreferrer"&gt;Linkedin.&lt;/a&gt;&lt;/p&gt;

</description>
      <category>tasker</category>
      <category>androidautomation</category>
      <category>ai</category>
      <category>python</category>
    </item>
    <item>
      <title>Best Mobile AI Agents in 2026</title>
      <dc:creator>Priya Negi</dc:creator>
      <pubDate>Mon, 16 Mar 2026 09:08:32 +0000</pubDate>
      <link>https://dev.to/priya_negi_9ffd29931ea408/best-mobile-ai-agents-in-2026-pe0</link>
      <guid>https://dev.to/priya_negi_9ffd29931ea408/best-mobile-ai-agents-in-2026-pe0</guid>
      <description>&lt;p&gt;Stop me if you've heard this one: "AI agents are going to revolutionize how you use your phone!"&lt;br&gt;&lt;br&gt;
Yeah, I've been hearing that since 2024. And for two years, most of it was vaporware slick demos that fell apart the second you tried to do something real.&lt;/p&gt;

&lt;p&gt;But 2026 is different. I'll give it that.&lt;/p&gt;

&lt;p&gt;I've spent the last few weeks installing, configuring, cursing at, and occasionally being impressed by every mobile AI agent I could get my hands on. Some of these are legitimately game-changing. Others are polished marketing wrapped around mediocre tech. And a few surprised me in ways I didn't expect.&lt;/p&gt;

&lt;p&gt;This isn't another top 10 best tools listicle.&lt;br&gt;&lt;br&gt;
This is what I actually found when I put these things to work. Lets dive into the Best Mobile AI Agents in 2026.&lt;/p&gt;




&lt;h2&gt;
  
  
  What are we even talking about?
&lt;/h2&gt;

&lt;p&gt;A mobile AI agent is software that can:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Look at your phone screen
&lt;/li&gt;
&lt;li&gt;Understand what's happening
&lt;/li&gt;
&lt;li&gt;Take actions such as tapping, scrolling, typing&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;Just like you would.&lt;/p&gt;

&lt;p&gt;The big leap in 2026 is that these agents don't just work inside one app anymore.&lt;br&gt;&lt;br&gt;
They work across apps, controlling the entire device.&lt;/p&gt;




&lt;h1&gt;
  
  
  THE ONES THAT ACTUALLY IMPRESSED ME
&lt;/h1&gt;

&lt;h2&gt;
  
  
  Droidrun: The Open-Source Framework That Punches Way Above Its Weight
&lt;/h2&gt;

&lt;p&gt;I almost skipped Droidrun because open-source mobile agent framework sounds like something that'll eat my entire weekend just getting it to run.&lt;/p&gt;

&lt;p&gt;I was wrong.&lt;/p&gt;

&lt;p&gt;Droidrun is the foundation that serious developers are building on.&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;MIT-licensed
&lt;/li&gt;
&lt;li&gt;LLM-agnostic (plug in GPT-4, Claude, Gemini, whatever)
&lt;/li&gt;
&lt;li&gt;Handles device communication
&lt;/li&gt;
&lt;li&gt;Screen understanding
&lt;/li&gt;
&lt;li&gt;Action execution
&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;While your model does the thinking.&lt;/p&gt;

&lt;h3&gt;
  
  
  What I love
&lt;/h3&gt;

&lt;p&gt;You own the entire stack.&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;No vendor lock-in
&lt;/li&gt;
&lt;li&gt;No surprise pricing
&lt;/li&gt;
&lt;li&gt;Android support today
&lt;/li&gt;
&lt;li&gt;iOS planned for the future&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;I had a custom agent controlling my test device within an afternoon and this is why I have placed Droidrun at top in the Best Mobile AI Agents list. &lt;/p&gt;

&lt;h3&gt;
  
  
  The catch
&lt;/h3&gt;

&lt;p&gt;A few months ago it required a bit more setup.&lt;br&gt;&lt;br&gt;
But when I checked again recently, they launched their cloud as well.&lt;/p&gt;

&lt;p&gt;And honestly — even if you know nothing about coding, you can still set up automation in under 10 minutes.&lt;/p&gt;




&lt;h2&gt;
  
  
  Mobilerun — Droidrun's Cloud-Powered Big Sibling
&lt;/h2&gt;

&lt;p&gt;If Droidrun is the engine, Mobilerun is the fully assembled car.&lt;/p&gt;

&lt;p&gt;It gives you cloud-hosted real Android devices that you can automate using simple English instructions.&lt;/p&gt;

&lt;p&gt;Let's be real — managing physical devices is a nightmare at scale:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Charging issues
&lt;/li&gt;
&lt;li&gt;OS updates breaking things
&lt;/li&gt;
&lt;li&gt;Devices going offline at 2 AM&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;Mobilerun tries to eliminate all of that.&lt;/p&gt;

&lt;p&gt;The tech is still evolving, but it's clear where this is going.&lt;/p&gt;

&lt;h2&gt;
  
  
  My test
&lt;/h2&gt;

&lt;p&gt;I connected my old Android device using the Droidrun APK and asked the agent to order a blueberry cheesecake on a food delivery app.&lt;/p&gt;

&lt;p&gt;The interesting part:&lt;/p&gt;

&lt;p&gt;This was done on a real device, not an emulator.&lt;/p&gt;

&lt;p&gt;The platform is still young and evolving, but for teams building mobile automation at scale, this approach feels like the future.&lt;/p&gt;




&lt;h1&gt;
  
  
  THE BIG TECH HEAVYWEIGHTS
&lt;/h1&gt;

&lt;h2&gt;
  
  
  Google Gemini
&lt;/h2&gt;

&lt;p&gt;Google replaced Assistant with &lt;strong&gt;Gemini&lt;/strong&gt;, and the screen automation is impressive when it works.&lt;/p&gt;

&lt;p&gt;I watched it complete a multi-step food order.&lt;/p&gt;

&lt;p&gt;Then the next day it got confused by a slightly different menu layout.&lt;/p&gt;

&lt;p&gt;That's Gemini in a nutshell:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Incredibly high ceiling&lt;/li&gt;
&lt;li&gt;Frustratingly low floor&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;Still beta for a reason but still deserves a place in the list of Best Mobile AI Agents.&lt;/p&gt;

&lt;h2&gt;
  
  
  Apple Intelligence &amp;amp; Siri
&lt;/h2&gt;

&lt;p&gt;Apple took the &lt;strong&gt;philosophical opposite approach&lt;/strong&gt;.&lt;/p&gt;

&lt;p&gt;It's &lt;strong&gt;privacy-first&lt;/strong&gt;, and &lt;strong&gt;Private Cloud Compute&lt;/strong&gt; is genuinely impressive engineering.&lt;/p&gt;

&lt;p&gt;But as an &lt;strong&gt;autonomous agent&lt;/strong&gt;, it's less capable.&lt;/p&gt;

&lt;p&gt;Apple treats AI more like a &lt;strong&gt;background assistant&lt;/strong&gt; than a &lt;strong&gt;fully autonomous actor&lt;/strong&gt;.&lt;/p&gt;

&lt;p&gt;If you want your phone to &lt;strong&gt;execute complex tasks on its own&lt;/strong&gt;, Gemini is further along.&lt;/p&gt;

&lt;p&gt;But a &lt;strong&gt;real agent ecosystem on iOS is still a work in progress&lt;/strong&gt;.&lt;/p&gt;




&lt;h2&gt;
  
  
  Samsung Galaxy AI
&lt;/h2&gt;

&lt;p&gt;The &lt;strong&gt;Galaxy S26&lt;/strong&gt; ships with Gemini integrated &lt;strong&gt;deeper than stock Android&lt;/strong&gt;.&lt;/p&gt;

&lt;p&gt;Some features are surprisingly good:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;&lt;strong&gt;Live Translate during calls&lt;/strong&gt;&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;Circle to Search&lt;/strong&gt;&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;But there’s a catch:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Samsung hardware only
&lt;/li&gt;
&lt;li&gt;Feature fragmentation across models&lt;/li&gt;
&lt;/ul&gt;




&lt;h1&gt;
  
  
  So What Should You Actually Use?
&lt;/h1&gt;

&lt;h3&gt;
  
  
  If you are building mobile AI agents or automation
&lt;/h3&gt;

&lt;ul&gt;
&lt;li&gt;
&lt;strong&gt;Droidrun&lt;/strong&gt; → open-source, full control
&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Mobilerun&lt;/strong&gt; → cloud devices, less infrastructure headache&lt;/li&gt;
&lt;/ul&gt;

&lt;h3&gt;
  
  
  If you want a smarter phone
&lt;/h3&gt;

&lt;ul&gt;
&lt;li&gt;
&lt;strong&gt;Gemini&lt;/strong&gt; → Android
&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Apple Intelligence&lt;/strong&gt; → iPhone
&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Samsung Galaxy AI&lt;/strong&gt; → Samsung devices&lt;/li&gt;
&lt;/ul&gt;




&lt;p&gt;These technologies are &lt;strong&gt;genuinely changing how we interact with our phones&lt;/strong&gt;.&lt;/p&gt;

&lt;p&gt;And honestly, it's about time.&lt;/p&gt;

&lt;p&gt;The future of &lt;strong&gt;headless apps&lt;/strong&gt; is not very far.&lt;/p&gt;




&lt;p&gt;I talk about &lt;strong&gt;Mobile AI Agents and Browser AI Agents&lt;/strong&gt;.&lt;/p&gt;

&lt;p&gt;If you're building in this space, feel free to &lt;strong&gt;&lt;a href="https://www.linkedin.com/in/priya-negi-b8b4061ab/" rel="noopener noreferrer"&gt;connect with me on LinkedIn.&lt;/a&gt;&lt;/strong&gt;&lt;/p&gt;

</description>
      <category>mobileagent</category>
      <category>mobileautomation</category>
      <category>automation</category>
      <category>android</category>
    </item>
  </channel>
</rss>
