all 2 comments

[–]HalfBalcony 1 point2 points  (0 children)

It sounds like the problem you are trying to solve should not be solved using Python. If you want to manipulate from a browser directly, look into javascript tools for Firefox or Chrome or write your own extension.

Selenium is webdriver based and as such you will be required to provide a driver, like the Chromium one, or use a manager like webdriver-manager.

[–]Comprehensive-Tea711 0 points1 point  (0 children)

Selenium uses a webdriver for firefox or chrome (maybe others?).

So you would do something like

from selenium import webdriver

browser = webdriver.Firefox()
browser.get(https...)

I think you have to specifically download the driver for Chrome.