Selenium Python - Data-Driven Testing
What will be the output of this code snippet?
Assuming
import csv
with open('data.csv', 'r') as file:
reader = csv.reader(file)
for row in reader:
print(row)Assuming
data.csv contains:name,age John,30 Jane,25
