You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When i tried to scrape it frequently it is showing captcha. Can anyone help me with this? Like how to bypass that captcha using proxy? How to implement proxy in selenium?
The text was updated successfully, but these errors were encountered:
Sorry for the delayed response @bansaripanseriya, I haven't been active on Github issues since the inception of my account 😅
I just published a CAPTCHA solving tutorial, not with Selenium though, but with another cool library named Python Playwright.
Here's the tutorial repository: https://github.com/MariyaSha/Playwright_WebScraping
The CAPTCHA bypassing mechanism uses Bright Data's Web Unlocker (a combination of proxies and other security bypassing tools), and there's a $15 coupon for it in the description of the video on YouTube.
I didn't check the following Selenium implementation on my end, but it should be similar to this (based on my Playwright implementation from the Repo link above):
# please fill in your details
proxy_server = "http://brd.superproxy.io:33335"
proxy_username = "brd-customer-<customer_id>-zone-<zone-name>"
proxy_password = "<zone-password>"
my_options = {
"proxy": {
"https": f"https://{proxy_username}:{proxy_password}@{proxy_server}",
"http": f"http://{proxy_username}:{proxy_password}@{proxy_server}",
}
}
driver = webdriver.Chrome(seleniumwire_options=my_options)
When i tried to scrape it frequently it is showing captcha. Can anyone help me with this? Like how to bypass that captcha using proxy? How to implement proxy in selenium?
The text was updated successfully, but these errors were encountered: