I have name, number, email etc in my excel which I am retrieving using the below code
Phone number in excel is 9888888888
v=wb.getSheet(sheet).getRow(r).getCell(c).toString();
but when I run my script to enter the data, selenium is entering 9.888888888E9.
I have tried formatting the cell in excel to "Text", "Number" but it has not worked.
How do I get it to enter the number as is in the excel?