I am writing an program for a web automation in python. Is here a ways to hide the geckodriver? So that the console (see picture) won't show up when I start the program.
here is a fraction of my code:
from selenium import webdriver
from selenium import *
from selenium.webdriver.common.by import By
from selenium.webdriver.support.ui import WebDriverWait
from selenium.webdriver.support import expected_conditions as EC`
driver=webdriver.Firefox()
wait=WebDriverWait(driver,120)
url = r"http://google.com"
driver.get(url) #This line starts the console (see picture)
You have to take care of a couple of stuffs here:
from selenium import *
(in your code) must be avoided.wait=WebDriverWait(driver,120)
have no usage in your code block.r
switch remember to use single quotes'...'
quit()
method.indentation
while usingPython
.http://www.google.com
, print thePage Title
and quits the driver instance.from selenium import webdriver
Console Output: