
🎯 Core Function
This automation monitors the Quora home feed, extracts each post’s key content (text + up to two image URLs), optionally handles second-step verification with human assistance, and then sends clean, structured updates to Telegram. In the Make.com scenario, the BrowserAct output is parsed into JSON, iterated post-by-post, optionally rewritten/normalized by Gemini, and routed to either “Send Photo” or “Send Text” in Telegram. A separate Slack branch can be used for error notifications or internal logging.
What this step is doing
It defines the Quora parameter as the target site context for later nodes.
It enables “Use Stored Credentials” so the workflow can log in without asking you every run.
If you enable “Prompt for Credentials on Each Run,” BrowserAct will ask you every time (not recommended for automation unless you rotate accounts often).

Important note from the node itself
It shows this is a legacy access node and suggests switching to the newer access node. If your run frequently breaks after Quora UI changes, switching to the newer access node is usually the first upgrade to do.

Why this matters
This is the difference between a workflow that “sometimes works” and a workflow that is stable for real-world use.
Without this guardrail, your extractor and loop steps will fail because the page becomes a verification page, not a feed page.

Recommended usage
Set a realistic time limit (for example, 10 to 15 minutes).
Only use this branch when you expect occasional verification. If verification happens every run, your account or access environment needs to be stabilized.

Key settings shown
It loops inside the post list and is designed to skip duplicated data.
You can enable auto-click “Load More” when present to load more items.
The max items setting is set to up to 10, meaning it will focus on up to 10 posts per run.
Practical advice
Start with 5 to 10 items until everything is stable, then increase if needed.
If “list identification failed,” it usually means you are not on the feed page (you are on verification, an error page, or a different layout).

Why this structure is important
Make.com needs consistent fields so the JSON parsing and routing are predictable.
Filtering ads prevents your Telegram channel from being polluted with irrelevant sponsored posts.

Why this is needed
Feeds like Quora dynamically load content. If you don’t scroll properly, you may re-read the same post or never load the next posts in a stable way.
Again, the node warns it is legacy and suggests switching to a newer access node for better stability.

Expected Output of BrowserAct
At the end of the BrowserAct run, the workflow returns a structured result that includes a list/array of posts, where each post has fields like Summary, Image (one or more URLs), by (author when available), and Link (post URL when available). This becomes the input payload for Make.com.
This Make.com scenario is responsible for orchestrating the data flow, AI processing, and message delivery after BrowserAct completes the scraping task.

Workflow Overview
The scenario starts by receiving the raw JSON output generated by the BrowserAct workflow. This output contains a list of extracted Quora posts.
JSON Parsing
The JSON module parses the raw response into a structured format, making each post’s content, image, author, and link accessible to downstream modules.
Item Iteration
An Iterator processes the parsed results one post at a time. This ensures each Quora post is handled independently and avoids mixing data between items.
AI Content Formatting
Each individual post is sent to the Google Gemini AI module. The AI standardizes the content into a clean JSON structure, deciding whether the output should be treated as text-only or image-based content.
Conditional Routing
A Router evaluates the AI output and directs the flow based on the content type:
Message Delivery
The final formatted content is delivered to Telegram, ensuring each post is sent in the most appropriate format for readability.
Competitor Content Monitoring
Automatically track Quora home feed discussions related to competitors or key topics, and push summarized updates to Telegram for fast internal review.
Trend & Topic Discovery
Continuously collect high-engagement Quora posts and use AI to normalize the content, helping teams identify emerging questions, themes, and user interests.
Community Insight Feeds
Build a private Telegram channel that mirrors curated Quora discussions, allowing founders, marketers, or researchers to stay informed without manually browsing.
AI-Assisted Content Curation
Leverage Gemini AI to clean, structure, and format raw Quora posts into readable updates, reducing noise and improving signal quality.
Lightweight Research Automation
Use the workflow as a low-maintenance research assistant that periodically delivers fresh discussion content without manual scraping or copy-pasting.