Reputation: 33
I want to driver chrome with web page only.
Upvotes: 3
Views: 7884
Reputation: 1265
For people using Firefox, it's also possible on Firefox 71+:
from selenium import webdriver
options = webdriver.FirefoxOptions()
options.add_argument("--kiosk")
options.add_argument("https://godotengine.org")
driver = webdriver.Firefox(options=options)
Upvotes: 0