I am navigating through the web with python and downloaded some files. However, I do not want to open edge, just want to download the files, but python opens edge automatically. How do I get around this?
Some of my code include:
import time
from selenium import webdriver
from selenium.webdriver.common.by import By
from selenium.webdriver.support.ui import Select
driver = webdriver.Edge()
driver.get("myURL")
time.sleep(2)
id_box = driver.find_element(By.ID,"id")
id_box.send_keys("username")
# And much more...