Hi, I just want to show the browser window no menu bar, address bar, addons or bookmarks.
If I activate the "headless" option, nothing is displayed at all.
Is this a bug of the new presentation of firefox on linux?
If no, is there another way to display only the browser window?
Code:
from selenium import webdriver
from selenium.webdriver.firefox.service import Service
from selenium.webdriver.firefox.options import Options
options = Options()
# options.headless = True # make all invisible
# options.add_argument("--headless") # make all invisible
service = Service(executable_path="/geckodriver")
driver = webdriver.Firefox(service=service, options = options)
driver.get("https://duckduckgo.com")