Selenium Python - Cross-Browser Testing
Given this Selenium Python snippet:
What will be printed if the browser is Firefox?
if 'firefox' in driver.capabilities['browserName'].lower():
print('Firefox workaround applied')
else:
print('Standard flow')What will be printed if the browser is Firefox?
