Selenium Python - Cross-Browser Testing
What will the following code print if the browser is Firefox?
browser = driver.capabilities['browserName']
if browser == 'firefox':
print('Use Firefox workaround')
else:
print('Use default code')