2
I’m doing a program in Python 3.8 using Selenium and Chromedrive, to access a website through Google Chrome. When it is time to run, the program opens two windows, one of Google Chrome and another prompt. However, I want this access to be done invisibly, without open any windows other than Python.
My code goes something like this:
from selenium import webdriver
driver = webdriver.Chrome()
driver.get("https://google.com")
How do I make the process invisible to the user? If I have to install a library, which Python folder do I put it in? What is the command?
The program will run on windows 32.
Thanks in advance, I really need this help.
Thank you very much Daniel, you saved my day!!! I did that and it worked out fine
– Pedro