Selenium Python - Selenium Grid
Given this Python Selenium code snippet for Sauce Labs, what will be printed if the test runs successfully?
from selenium import webdriver
caps = {
'browserName': 'chrome',
'platformName': 'Windows 10',
'browserVersion': 'latest'
}
driver = webdriver.Remote(
command_executor='https://username:accesskey@ondemand.saucelabs.com:443/wd/hub',
desired_capabilities=caps
)
driver.get('https://example.com')
print(driver.title)
driver.quit()