Создание браузерного ИИ агента для автоматических покупок и управления в n8n + AirTop за 20 минут
TutorialИгорь Зуевич•1,822 views•Jun 17, 2025
Пошаговое руководство по созданию ИИ агента, который имитирует действия человека в браузере, автоматически заказывает товары и управляется через Telegram с помощью n8n и AirTop.
Blurb
В этом видео Игорь Зуевич демонстрирует, как создать браузерного ИИ агента на базе n8n и AirTop, который имитирует действия человека в интернете и выполняет задачи, такие как автоматический поиск и заказ товаров на Wildberries. Вы увидите живую демонстрацию, где агент самостоятельно находит белые носки нужного размера и добавляет их в корзину. Видео подходит для предпринимателей, маркетологов и фрилансеров, желающих автоматизировать рутинные задачи без программирования. В конце доступен готовый шаблон n8n для быстрого старта.
Want the big picture?
Highlighted Clips
Демонстрация работы ИИ агента на Wildberries
ИИ агент заходит на Wildberries, авторизуется, ищет белые носки 44 размера и добавляет их в корзину.
Обзор и настройка AirTop для браузерной автоматизации
Знакомство с AirTop, создание профиля, авторизация и управление сессиями для имитации действий в браузере.
Получение и настройка API ключа для интеграции с n8n
Как получить API ключ в AirTop и добавить его в n8n для управления ИИ агентом.
Разбор workflow в n8n и ключевых нод
Подробный разбор компонентов workflow, включая старт браузера, действия клика, поиск элементов и завершение сессии.
Introduction to the AI Agent Concept
In the opening segment, Игорь Зуевич introduces the core idea of the video: an AI Agent that mimics human actions on websites. This agent can perform tasks that a user would normally do manually, such as posting on social media or shopping online. The highlight is the agent’s ability to interact with websites like Wildberries, logging in, searching for products, and adding them to the cart autonomously.
"Your AI Agent... can perform any actions, including ordering some goods on the Internet in online stores or in a marketplace, for example, on Wildberries."
0
Key points:
- The AI Agent simulates human browsing behavior.
- It can log in to websites and perform complex tasks.
- The example used is ordering white socks size 44 on Wildberries.
- Two modes of interaction: via Telegram bot or built-in chat in n8n.
Live Demonstration of Ordering Socks on Wildberries
Here, Igor performs a live test by instructing the AI Agent to find and add white socks size 44 to the cart on Wildberries. The agent logs in using a test profile Igor created specifically for this demo. The video shows the agent navigating the site, searching, and successfully adding the product to the basket.
"He now goes to the Wildberries website, logs in, selects my profile as authorization... it creates a session... performs some actions in this window."
"He found 2 pairs of white socks... in the basket... we can order in 1 click."
Key points:
- The agent creates a browser session to avoid bot detection.
- It performs real-time browsing actions: clicking, searching, viewing.
- The session link is sent to Telegram for monitoring.
- The agent successfully adds the correct product to the cart.
- Igor confirms the socks are indeed size 44-45, matching the request.
Two Ways to Use the AI Agent: Build or Import Template
Igor explains that viewers have two options: build the AI Agent step-by-step with him or simply import a ready-made n8n template available via a Telegram bot linked in the video description.
"You have 2 options for working with this AI agent: 1st option you create it step by step, 2nd option you just press 3 buttons, import from file, and upload this ready-made n8n template."
Key points:
- The template is pre-configured for immediate use.
- The Telegram bot provides detailed instructions and access.
- The template supports ordering on Wildberries or other sites.
- No programming skills required; it’s a no-code solution.
Introduction to AirTop: The Core Tool for Browser Automation
This chapter introduces AirTop, the main service enabling the AI Agent to perform browser actions. AirTop can open real browser windows, simulate clicks, manage sessions, and interact with any website as a human would.
"AirTop means this tool allows you to perform any actions on any site... it can open windows, close windows, delete files, open pages."
"It can perform actions order tickets, go to Google profile, log in, send email, watch videos on YouTube... almost everything independently."
Key points:
- AirTop simulates full browser sessions, not just simple bot scripts.
- Supports complex interactions: clicks, navigation, session management.
- Can be used for a wide range of tasks beyond shopping.
- Free tier offers 5,000 credits, enough for basic automation like ordering socks.
- Paid plans increase credits and integrations.
Setting Up Profiles and Sessions in AirTop
Igor walks through creating a user profile in AirTop for authorization on websites. This profile stores login sessions so the AI Agent can act as an authenticated user without re-logging in every time.
"When we add a profile, we call it, for example, Igor test... after you create a profile you press connect and choose the website, e.g., Wildberries."
"The session opens, and all I need is to simply log in to the site... so that in the future we tell him what needs to be done on this or that site."
Key points:
- Profiles hold login credentials and session data.
- Sessions keep the browser window open and authorized.
- Multiple tabs can be opened under one profile, maintaining authorization.
- This avoids bot detection by mimicking real user sessions.
Obtaining and Using the AirTop API Key in n8n
To integrate AirTop with n8n, Igor shows how to generate an API key from AirTop and add it to n8n credentials. This allows n8n workflows to control the browser sessions via AirTop nodes.
"We create a new API key, call it n8n, copy it, and enter it in n8n to use AirTop nodes without problems."
Key points:
- API key is essential for secure communication between n8n and AirTop.
- Once added, n8n can trigger browser actions programmatically.
- This setup is the backbone of the AI Agent’s automation capabilities.
How the AI Agent Mimics Human Behavior to Bypass Bot Protection
Igor explains the importance of session management and human-like browsing patterns to avoid detection by websites. The AI Agent always works within one browser window and session, using the stored profile to appear as a real user.
"If it does not perform these actions, it will open new tabs where it will not be authorized... we need it to act in one window."
"Wildberries will not notice that this is not a living person but an imitation of a living person plus authorization."
Key points:
- Maintaining a single session is critical to avoid bot flags.
- The agent performs clicks, searches, and navigation like a human.
- Authorization tokens and cookies are reused to maintain legitimacy.
- This approach enables complex tasks like adding items to cart.
Deep Dive into n8n Workflow Components
Igor breaks down the n8n workflow that powers the AI Agent. It includes nodes for starting the browser session, searching for elements, clicking, and ending the session. The workflow also integrates with Telegram for real-time control and feedback.
"We use ChatGPT 4.1 nano for the prompt... the Think tool reviews all tasks again if something goes wrong."
"The algorithm: Start Browser → actions → End Session."
Key points:
- Workflow uses multiple nodes: AirTop nodes for browser control, ChatGPT for decision-making.
- Telegram integration allows sending session links and receiving status updates.
- The Think tool acts as a safety net to re-check tasks.
- Prompts are in Russian, tailored for precise instructions to the AI Agent.
The AI Agent’s Prompt and Algorithm Explained
The prompt instructs the AI Agent to act as a reliable, intelligent VP agent controlling a remote browser. It emphasizes safe, accurate execution of human instructions on websites.
"You are an intellectually reliable VP agent... your task is to accurately, safely, effectively carry out human instructions moving around sites."
"Always start with browser initialization, open session and window, then perform actions step by step."
Key points:
- The prompt guides the AI’s behavior and decision-making.
- The agent uses session and window IDs to maintain context.
- Actions include searching for elements, clicking, filling forms.
- The process ends with session closure and notification.
Monitoring and Controlling the AI Agent via Telegram
Throughout the video, Igor highlights how the AI Agent sends session links and status updates to Telegram. This allows the user to monitor the agent’s progress live and intervene if necessary.
"It sends me a link to an open session in Telegram so that I can control it at the initial stage."
"You can see in the execution section how it all looks... how the whole process of this legend looks like."
Key points:
- Telegram acts as a control panel for the AI Agent.
- Users receive real-time feedback and can track browser sessions.
- This integration enhances transparency and trust in automation.
Final Thoughts and Call to Action
Igor wraps up by encouraging viewers to explore n8n and create their own AI Agents. He reminds them to download the ready-made template from the pinned message and subscribe for more tutorials.
"I hope this video was useful to you... create your own AI agents... Igor Zuevich was with you, be sure to like this video and subscribe."
Key points:
- The video provides a practical, no-code guide to browser automation.
- Ready-made templates accelerate adoption.
- The combination of n8n, AirTop, and AI opens new automation possibilities.
- Suitable for entrepreneurs, marketers, and freelancers.
This detailed breakdown captures the essence and technical depth of Igor Zuevich’s tutorial on building a browser-based AI Agent using n8n and AirTop. The video balances live demonstrations, technical explanations, and practical advice, making it accessible for users eager to automate complex web tasks without coding.
Key Questions
AirTop — это сервис, который позволяет имитировать действия человека в браузере, открывать окна, кликать, вводить данные и управлять сессиями, что делает возможным автоматизацию любых действий на сайтах.
Have more questions?
Analyzing video...
This may take a few moments.