Home > other >  Selenium can not open opensea.io
Selenium can not open opensea.io

Time:12-30

When I'm trying to open opensea.io with selenium it's giving Cloudfare captcha, even if I solve the captcha the captcha page is not redirecting to opensea.io

Update: Installing vpn solved this but there must be other ways.

driver.get("https://opensea.io")

Error screenshot given below.

cloudfare error

CodePudding user response:

Maybe Cloudflare blocked your IP. Try using a new IP through a proxy (or VPN, Another ISP), and see if it works or not.

Thanks to https://community.cloudflare.com/t/cant-bypass-cloudflare-captcha/200335/8

CodePudding user response:

I think they might be a more indirect means to open the domain. Most times you cannot directly call the domain due to security reasons.

Please refer to this article for more details: https://medium.com/code-sprout/upload-multiple-images-in-opensea-nft-d79dd7bb762b

  • Related