Reputation: 15
Which library to import in Python to read data from an Excel file, I want to store different xpaths
in Excel file for automation testing using Selenium?
Upvotes: 0
Views: 781
Reputation: 17
You may use XlsxWriter. It is a Python module for writing files in Excel. xlutils is also very useful collection of utilities for automating excel sheet operations.
https://xlsxwriter.readthedocs.io/
Upvotes: 1