NeuroAgent

Best headless browser for Python vs Google AI Studio

How to use undetected_chromedriver and other tools to bypass bot detection in Google AI Studio. Practical code examples for TTS from Gemini without API.

Question

What headless browser for Python is not detected or blocked by Google AI Studio? I want to implement text-to-speech (TTS) from Gemini in the console without using an API. For similar tasks, I’ve used Playwright + requests with anti-bot masking and proxy/cookie support, which worked successfully even on AliExpress, but Google is blocking my requests. What modern solutions exist for bypassing this blockage? I know that using Chrome is an option, but I’m interested in new approaches.

NeuroAgent

To bypass Google AI Studio blocking in headless mode on Python, the undetected_chromedriver library is the best choice, as it’s specifically designed to avoid bot detection. This library automatically patches ChromeDriver, masking it as a regular browser and successfully bypassing most anti-bot systems, including Google’s protection.


Table of Contents


Main Solutions for Bypassing Detection

Google AI Studio uses advanced protection systems that can detect headless browsers and automated requests. The main bypass methods include:

  1. Special libraries for masking as real browsers
  2. User-Agent and other header configuration
  3. Human behavior emulation with random delays
  4. Proxy usage and IP rotation
  5. Working with cookies and sessions

The most effective solutions in 2024-2025 are undetected_chromedriver and specialized anti-detect browsers.

undetected_chromedriver - The Best Choice

The undetected_chromedriver library is the most preferred solution for your task. It automatically downloads and patches the latest version of ChromeDriver, making it indistinguishable from a regular Chrome browser.

Key advantages:

  • Automatic driver download and patching
  • Headless mode support
  • Successfully bypasses most anti-bot systems
  • Compatible with Selenium API

According to the ScrapingBee documentation, the library successfully bypasses protection even on complex websites.

Alternative Headless Browsers

Nodriver

Nodriver offers a modern approach to browser automation with various options for increasing authenticity:

python
from nodriver import *

browser = await start(
    browser_args=[
        '--user-agent=Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36',
        '--disable-blink-features=AutomationControlled'
    ],
    headless=False
)

Anti-detect browsers

For maximum protection, you can use specialized anti-detect browsers:

  • Incogniton - Chromium-based with profile support and API
  • NstBrowser - with built-in RPA framework and headless mode
  • GoLogin - focused on anti-fingerprinting

Additional Protection Methods

User-Agent Configuration

python
options = uc.ChromeOptions()
options.add_argument('--user-agent=Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36')

Bypassing WebDriver Detection

The undetected_chromedriver library automatically removes WebDriver properties:

python
driver = uc.Chrome(headless=True)
# webdriverIsOn now returns False

Human Behavior Emulation

Add random delays between actions:

python
import random
import time

time.sleep(random.uniform(1, 3))

Configuration for Google AI Studio

To implement TTS from Gemini in console without API, use the following approach:

python
import undetected_chromedriver as uc
from selenium.webdriver.common.by import By
import time

# Chrome setup with anti-bot protection
options = uc.ChromeOptions()
options.add_argument('--disable-blink-features=AutomationControlled')
options.add_argument('--disable-dev-shm-usage')
options.add_argument('--no-sandbox')

driver = uc.Chrome(options=options, headless=True)

try:
    # Navigate to Google AI Studio
    driver.get('https://aistudio.google.com')
    
    # Logic for Gemini TTS
    # Your code for interacting with the interface here
    
finally:
    driver.quit()

Practical Code Examples

Complete Example with undetected_chromedriver

python
import undetected_chromedriver as uc
import time
import random

def gemini_tts(text):
    options = uc.ChromeOptions()
    options.add_argument('--user-agent=Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36')
    options.add_argument('--disable-blink-features=AutomationControlled')
    options.add_argument('--headless=new')
    
    driver = uc.Chrome(options=options)
    
    try:
        driver.get('https://aistudio.google.com')
        
        # Simulate human behavior
        time.sleep(random.uniform(2, 4))
        
        # Your TTS code here
        print(f"Processing text: {text}")
        
        # Additional delays
        for _ in range(3):
            time.sleep(random.uniform(1, 2))
            
    except Exception as e:
        print(f"Error: {e}")
    finally:
        driver.quit()

# Usage
gemini_tts("Hello, world! This is a test phrase for TTS.")

Alternative with Selenium Manager

As noted in the ScrapingBee documentation, Selenium 4+ includes Selenium Manager, which automatically manages drivers.

Conclusion and Recommendations

  1. Use undetected_chromedriver as your primary tool - it’s specifically created to bypass modern anti-bot systems
  2. Add random delays between actions to simulate real user behavior
  3. Configure User-Agent and other headers to match real browsers
  4. Rotate proxies to distribute the load
  5. Test different combinations of settings as protection systems constantly update

For maximum effectiveness, combine multiple methods: undetected_chromedriver + proxies + delays + User-Agent rotation. This will allow you to successfully bypass even advanced Google AI Studio protection systems.

Sources

  1. How to use undetected_chromedriver (plus working alternatives) | ScrapingBee
  2. How to Run Selenium in Headless Mode with Python in 2025 | IPRoyal
  3. Python browser automation with Selenium (2025 guide) | Apify
  4. How to Bypass Cloudflare in 2025: The 9 Best Methods | ZenRows
  5. Scraping with Nodriver: Step by Step Tutorial with Examples | ScrapingBee
  6. How to Bypass Cloudflare Protection? Tutorial for 2025 | IPRoyal