Hi, We use excel file to read and write our test data (data driven framework) in Selenium.
We use Apache POI to do this.
But as you all know, Apache POI library does not support multithreading(especially when writing the data). This is stopping us from using Selenium grid's multithreading capability.
In our test script, we scrape data from the application and store it in excel for validating it later. so we do a lot of write operation to excel.
Storing in Java memory is not an option as we need this data to be shared with other stakeholders post validation. So we need to print it to excel.
Do we have any alternatives for POI library? People who use selenium grid, how do you overcome this issue if you are using excel for storing the data?