Selenium Python - Advanced Patterns
Consider this Python code snippet configuring a Firefox profile:
from selenium.webdriver.firefox.firefox_profile import FirefoxProfile
profile = FirefoxProfile()
profile.set_preference('browser.startup.homepage', 'https://example.com')
profile.set_preference('dom.webnotifications.enabled', False)
profile.update_preferences()
print(profile.default_preferences['browser.startup.homepage'])
What will be printed when this code runs?