Home > Blockchain >  Specific web page doesn't load (empty page) HTML and CSS with Selenium?
Specific web page doesn't load (empty page) HTML and CSS with Selenium?

Time:11-19

I started working with Selenium, it works for any website I tried except one (myvisit.com) that doesn't load the page.
It opens Chrome but the page is empty. I tried to set number of delays but it still doesn't load.
When I go to the website on a regular Chrome (without Selenium) it loads everything.

Here is my simple code, not sure how to continue from that:

import os
import random
import time

# selenium libraries
from selenium import webdriver
from selenium.webdriver.common.by import By
from selenium.webdriver.chrome.options import ChromiumOptions


def delay():
    time.sleep(random.randint(2,3))

driver = webdriver.Chrome(os.getcwd() "\\webdriver\\chromedriver.exe")

driver.get("https://myvisit.com")

delay()
delay()
delay()
delay()

I also tried to use ChromiumOptions with flags like --no-sandbox but it didn't help:

CodePudding user response:

from selenium.webdriver.chrome.options import Options
options = Options()
options.add_argument('--disable-blink-features=AutomationControlled')
driver = webdriver.Chrome(os.getcwd() "\\webdriver\\chromedriver.exe",options=options)

Simply add the arguement to remove it from determining it's an automation.

  • Related