This video was so helpful for me.Thanks naveen a lot for this video
@suryamanikanta7886 жыл бұрын
Hello Mr. Naveen .Good Explanation,,,
@kavitamathpati67403 жыл бұрын
Hi, Naveen I have below 3 scenarios I hope you can write script and explain...I will wait for it 1. Your Business Analyst has asked to write an automation script which can search for iPhones having a maximum price of INR 40,000 on Flipkart website. 2. The automation script should be capable of retrieving the device model with storage capacity and customer ratings. 3. The information retrieved should be saved in a CSV file where data is sorted by Price in ascending order.
@venkatn7946 жыл бұрын
Thank you so much Naveen for the well explanation.
@harmanmaan8706 жыл бұрын
Hi , naveen very nice explanation.
@NaveenKumar-kv4gu6 жыл бұрын
Hi Naveen, Can you please show me the logic what you written in Xls_ Reader class , to read the data into excel sheet
@khajazakiuddin9316 жыл бұрын
Well explained naveen. Got to know few more things on writing excel data. Thank you so much..🙂
@real_hello_kitty4 жыл бұрын
Thanks! Appreciate. 🙏
@navenreddyaleti74466 жыл бұрын
it's nice naveen
@kapildharmale3195 жыл бұрын
Hi navin,thanks for the video,but im not able to find or use the xls reader after created xls class and also added apache poi jar files too.can u please help me out,is there any other specific apache jar file version which s I need to add into library.
@abraham29616 жыл бұрын
Like in this table suppose if I don't want to add any duplicate value or I don't want to retrieve duplicate value then ??
@saikirantelapalli87856 жыл бұрын
Hello Naveen, thanks for this video. Can you please share us the XLS class file path from github
Thanks for your video it is really informative, I'm trying to do the same thing in side page factory method in the consul it prints the output line by line and it create the sheet and columns in excel but not write the data in rows
@dileepks23195 жыл бұрын
Hi Naveen , That was a nice video. I have a doubt here? What if the sheet exist but column does not exist?, How do we handle this since reader object will come out of the loop.
@sureshsubramaniyan32015 жыл бұрын
Yes,, it is famous interview question not got an answer... could you explain how to insert data in excel for specific cell.. Thanks for your effort
@basasufi51826 жыл бұрын
Hi Naveen, Please help me out, I am practising on this but for Xls_Reader I am not able to find and jar file.
@deep801056 жыл бұрын
Better clone the project from Naveen git hub link. All the jar files are mentioned in pom file.
@kalyanijoshi68845 жыл бұрын
Hi Naveen, My excel is getting corrupted while writing to excel. Initial few values are written but as the number of values are written the excel gets corrupted.Please help
@sainagakumaraswamy35803 жыл бұрын
Naveen how can I apply bold font and color to text using xls_reader. Kindly share a video for that.
@navyachinnari5 жыл бұрын
Hi Naveen Sir, Good Morning... I tried this for columns.. But I was stuck in middle... In my webtable page 10 records are there on 1st page... n nxt 10 records on 2nd page... I can able to get d data from 1st page but once the 10th record is completed not able to go 2nd page...How to achieve this.. I tried with for loop but no use... Can u please suggest m any solution for this?
@ramakrishna36046 жыл бұрын
Hi Naveen thanks for this video, which dependency or jar we are used for Xls_Reader class?
@NaveenKumar-kv4gu6 жыл бұрын
You should create class with name of Xls_Reader and then you can import form Util
@arunkumarpandey49894 жыл бұрын
Hi guys i have seen a lot of people are asking about the Xls Reader link, so guys below is the github link of XLs Reader github.com/naveenanimation20/NewExcelUtil2020_ApachePOI/blob/master/src/main/java/com/excel/lib/util/Xls_Reader.java
@AjayKumar-ye2cu5 жыл бұрын
Hi Naveen Sir.. Please can you refer the video for a scenario where we can continue our test even if any none get failed and we want to continue script.
@abraham29615 жыл бұрын
Hi Naveen here you are fetching data from web table and writing it on excel and if we want to verify that data is correct or not then how to do that
@justchill2985 жыл бұрын
Thanks. kindly share complete code of lectures
@notiues35354 жыл бұрын
can we do it from excel to Contact and save in in freeCrm
@khajazakiuddin9316 жыл бұрын
Hi Naveen, I'm unable to see the package for Xls_Reader in my eclipse. It is not showing any suggestions to import the Util package for the command Xls_Reader reader=new XLS_Reader(Filepath). I've already configured the Apache POI jar files into the libraries. Could you please help me out with this. Thank you.
@altafshaikh32802 жыл бұрын
I'm also facing the same issue.
@marufsayyed41035 жыл бұрын
hi Naveen eclipse is not able to recognize xls-reader can u plz share xls reader jar download link or your xls classpath from github Note: i have added all poi jar then also i am not able to xls reader
@munnambabar6404 жыл бұрын
I found an error regarding Xls_reader and cannot resolve it even after adding all Apache POI dependencies
@arunkumarannamalai52024 жыл бұрын
Bro can u tell me how to compare web table with Excel sheet
@vinayvykuntam35036 жыл бұрын
hi naveen, getting error like Xls_Reader cannot be resolved to a type and showing XSSFReader and XSSFBReader in help
@vinayvykuntam35036 жыл бұрын
package naveen; import java.util.List; import java.util.concurrent.TimeUnit; import java.util.*; import org.openqa.selenium.By; import org.openqa.selenium.WebDriver; import org.openqa.selenium.WebElement; import org.openqa.selenium.chrome.ChromeDriver; public class WriteDatatoExcel { public static void main(String[] args) { WebDriver driver; String driverPath = "D:\\NEW DOWNLOA\\"; System.out.println("launching chrome browser"); System.setProperty("webdriver.chrome.driver", driverPath + "chromedriver.exe"); driver = new ChromeDriver(); driver.manage().window().maximize(); driver.manage().timeouts().implicitlyWait(20,TimeUnit.SECONDS); driver.get("www.w3schools.com/html/html_tables.asp"); //*[@id="customers"]/tbody/tr[2]/td[1] //*[@id="customers"]/tbody/tr[3]/td[1] String beforpath= "//*[@id='customers']/tbody/tr["; String afterpath="]/td[1]"; List rows= driver.findElements(By.xpath("//*[@id='customers']//tr")); System.out.println("NO OF ROWS "+(rows.size()-1)); int rowcount= rows.size(); String path = "D:\\selenium excel\\testdata.xlsx"; Xls_Reader reader = new Xls_Reader("D:\\selenium excel\\testdata.xlsx"); for(int i=2;i
@prakashpohi73146 жыл бұрын
thanks for the video ...... how can i join the live class ????
@naveenautomationlabs6 жыл бұрын
Send me a mail to naveenanimation20@gmail.com
@ravindrababugogula69275 жыл бұрын
@@naveenautomationlabs hii naveen I want Xls_Reader jar how can I get
@vishaljodwal96473 жыл бұрын
Dony know why in my code its writing only one record in excel...top one... But in output all records are coming
@somukesani00976 жыл бұрын
Thank you so much for explaining, Can you please share us the XLS class file path from github
@ramyakrishnapothem86662 жыл бұрын
How to convert multiple tables to excel plz reply me
@sanjaydwivedi40016 жыл бұрын
i am having problem with xls_reader . It showing cannot resolve to a type.
@deep801056 жыл бұрын
Use CellType class instead of Cell.Cell_Type_String for e.g
@manikantanagudu49674 жыл бұрын
How to write the code for .Xlsx
@anilkumardevaki70144 жыл бұрын
How to Append data in excel
@mdaffan23984 жыл бұрын
Your all videos are stretched too long ... otherwise it is very good