Selenium Python - Data-Driven Testing
Identify the error in this code snippet:
from openpyxl import load_workbook
wb = load_workbook('data.xlsx')
sheet = wb['Sheet1']
value = sheet.cell(row=0, column=1).value
print(value)