Selenium Python - Data-Driven Testing
What is wrong with this code snippet for reading CSV data?
import csv
with open('data.csv', 'r') as file:
reader = csv.reader(file)
for row in reader:
print(row[3])