Selenium के साथ एकीकरण
Python Selenium और Chrome Driver वेब स्वचालन को स्वचालित IP रोटेशन ट्रिगर के साथ XProxy 4G/5G मोबाइल प्रॉक्सी से रूट करना सीखें।
Selenium के साथ XProxy का उपयोग क्यों करें?
Selenium वेब स्क्रैपिंग, ब्राउज़र स्वचालन और बॉट विकास के लिए उद्योग-मानक फ्रेमवर्क है। Selenium स्क्रैपर को XProxy के स्व-होस्टेड 4G/5G मोबाइल प्रॉक्सी से रूट करने पर आप वास्तविक मोबाइल कैरियर IP को आवश्यकतानुसार बदलकर Cloudflare एंटी-बॉट जाँच, IP दर सीमाओं और CAPTCHA को बायपास कर सकते हैं।
पूर्वापेक्षाएँ
- Python 3.8+ जिसमें
seleniumपैकेज इंस्टॉल हो (pip install selenium requests)। - सक्रिय 4G/5G USB डोंगल या Android फ़ोन के साथ चालू XProxy सर्वर।
- XProxy डैशबोर्ड से प्रॉक्सी SOCKS5 या HTTP क्रेडेंशियल और रोटेशन API लिंक।
Python Selenium कोड उदाहरण
नीचे एक प्रोडक्शन-रेडी Python स्क्रिप्ट है जो Selenium Chrome Driver को XProxy HTTP/SOCKS5 प्रॉक्सी के साथ कॉन्फ़िगर करती है और स्क्रैपिंग कार्य शुरू करने से पहले IP रोटेशन ट्रिगर करती है:
import time
import requests
from selenium import webdriver
from selenium.webdriver.chrome.options import Options
# --- XProxy Configuration ---
XPROXY_HOST = "192.168.6.7" # Your XProxy server IP
XPROXY_PORT = 5001 # Port assigned to dongle #1 (HTTP/SOCKS5)
ROTATION_API_URL = "http://192.168.6.7:8081/api/v1/rotate_ip/position/1"
def rotate_xproxy_ip():
"""Trigger 4G/5G cellular reconnect on XProxy modem."""
print("🔄 Requesting XProxy IP rotation...")
try:
res = requests.get(ROTATION_API_URL, timeout=10)
if res.status_code == 200:
print("✅ IP rotation triggered successfully. Waiting 5s for cellular reconnect...")
time.sleep(5)
return True
else:
print(f"⚠️ Failed to rotate IP: HTTP {res.status_code}")
except Exception as e:
print(f"❌ Error calling XProxy Rotation API: {e}")
return False
def run_selenium_scraper():
# 1. Rotate IP before launch
rotate_xproxy_ip()
# 2. Configure Chrome Driver Proxy Options
chrome_options = Options()
chrome_options.add_argument(f'--proxy-server=http://{XPROXY_HOST}:{XPROXY_PORT}')
chrome_options.add_argument('--headless') # Run headless if desired
chrome_options.add_argument('--no-sandbox')
chrome_options.add_argument('--disable-dev-shm-usage')
driver = webdriver.Chrome(options=chrome_options)
try:
# 3. Verify exit IP address
print("🌐 Checking exit IP via Selenium...")
driver.get("https://api.ipify.org?format=json")
print("Response body:", driver.page_source)
# 4. Perform your scraping tasks...
driver.get("https://httpbin.org/ip")
print("Page Title:", driver.title)
finally:
driver.quit()
if __name__ == "__main__":
run_selenium_scraper()Selenium में प्रमाणीकृत प्रॉक्सी का प्रबंधन
यदि आपके XProxy चैनल पर प्रमाणीकरण सक्षम है (उपयोगकर्ता नाम & पासवर्ड), तो क्रेडेंशियल सहजता से उपलब्ध कराने के लिए selenium-wire या proxy-chrome-extension जैसे हल्के एक्सटेंशन का उपयोग करें:
from seleniumwire import webdriver
seleniumwire_options = {
'proxy': {
'http': 'http://username:[email protected]:5001',
'https': 'https://username:[email protected]:5001',
'no_proxy': 'localhost,127.0.0.1'
}
}
driver = webdriver.Chrome(seleniumwire_options=seleniumwire_options)
driver.get("https://httpbin.org/ip")
print(driver.page_source)
driver.quit()Why High-Quality SOCKS5 UDP & Mobile Proxies Matter for Selenium और वेब स्वचालन
Using cheap datacenter proxies or basic HTTP proxies in antidetect profiles leads to instant account suspensions on Facebook, Google, TikTok, and Amazon. Here is why XProxy's self-hosted 4G/5G mobile proxies deliver superior anonymity and trust:
- SOCKS5 with Full UDP Support: Unlike standard HTTP proxies that drop UDP packets, XProxy SOCKS5 proxies fully support UDP datagrams. This ensures WebRTC, DNS queries, and real-time audio/video sockets route securely through your proxy without revealing your real IP address.
- Instant REST API IP Rotation: Trigger cellular IP rotation on demand via simple HTTP GET requests (e.g.
http://192.168.6.7:8081/api/v1/rotate_ip/position/1). Reconnect 4G/5G USB modems in 3 to 8 seconds with zero proxy dropouts. - 100% WebRTC & DNS Leak Protection: Combined with XProxy's local LAN gateway and TCP OS Spoofing, your browser profiles maintain pristine anonymity scores on BrowserLeaks, Whoer, Pixelscan, and IPhey.
- Carrier-Grade NAT (CGNAT) Trust: Mobile carrier IPs are shared by thousands of active smartphone users. Major platforms never ban mobile IP ranges, granting your accounts maximum trust.
