Chrome opens with “Data;” with selenium chromedriv

2019-01-26 17:58发布

Trying to open "Google" or any other page (website) from Chrome via selenium chrome driver in python.

The code is :

from selenium import webdriver
from selenium.webdriver.common.keys import Keys
from time import sleep
from selenium.common.exceptions import TimeoutException
from selenium.webdriver.support.ui import WebDriverWait
import time

driver = webdriver.Chrome()
driver.get('https://google.com')

However, this opens my chrome window with the specified link and "data;" tab.

enter image description here

Why that data; tab opens? How to fix it?

Using latest versions of Chrome and Chromedriver

0条回答
登录 后发表回答