Selenium Python - Selenium Grid
Given this Python code connecting to Selenium Grid:
from selenium import webdriver
caps = {'browserName': 'firefox'}
driver = webdriver.Remote(command_executor='http://localhost:4444/wd/hub', desired_capabilities=caps)
driver.get('https://example.com')
print(driver.title)
What will be printed if the Grid and node are correctly set up?