Selenium Python - Data-Driven Testing
What is the main issue with this CSV reading code?
import csv
file = open('data.csv')
reader = csv.reader(file)
for row in reader:
print(row)