from selenium import webdriver
from selenium.webdriver.firefox.options import Options

PROFILE_PATH = "/Users/bogdansandulescu/Library/Application Support/Firefox/Profiles/7tdtj1g4.ads_automation"

options = Options()
options.profile = PROFILE_PATH

driver = webdriver.Firefox(options=options)
driver.get("https://google.com")

input("Press Enter to quit...")
