Selenium Python - Advanced Patterns
What will be the output of this code?
metrics = driver.execute_script('return window.performance.getEntriesByType("resource")')
print(len(metrics))
Assuming the page loaded 5 resource files (images, scripts, etc.).
