Selenium Python - CI/CD Integration
Given the code snippet below, what will be the output?
from concurrent.futures import ThreadPoolExecutor
import time
def test_func(name):
time.sleep(1)
return f"Test {name} done"
with ThreadPoolExecutor(max_workers=3) as executor:
results = list(executor.map(test_func, ['A', 'B', 'C', 'D']))
print(results)