Тёмный

Selenium Framework for Beginners 18 | How to use Excel for getting data in Selenium Java Framework 

Automation Step by Step
Подписаться 532 тыс.
Просмотров 128 тыс.
50% 1

Опубликовано:

 

14 окт 2024

Поделиться:

Ссылка:

Скачать:

Готовим ссылку...

Добавить в:

Мой плейлист
Посмотреть позже
Комментарии : 260   
@sandhyaeisha7817
@sandhyaeisha7817 3 года назад
I'm new to automation, this was perfect for beginners. Whoever made this thanks a tons!!👍🏼🙏🏼🔥
@RaghavPal
@RaghavPal 3 года назад
Glad you liked it Sandhya
@YogeshC-qv1kg
@YogeshC-qv1kg Год назад
Its Amazing way to describe the Excel part with additional information , thanks
@RaghavPal
@RaghavPal Год назад
Glad it was helpful!
@shreyazarkar
@shreyazarkar 5 лет назад
Raghav, your videos are very useful and you explain everything in detail. I have been watching all of your videos and they are extremely useful. Thanks for sharing your knowledge :)
@RaghavPal
@RaghavPal 5 лет назад
You're welcome Shreya. Do share with others
@dheerajsingh6568
@dheerajsingh6568 6 лет назад
You are such a awesome and great tutor and human as well... One request... Can you please put some real interviews question for those who have 2-3 years of exp in automation.... Please Raghav ji
@RaghavPal
@RaghavPal 6 лет назад
Hi Dheeraj, sure I will do it soon.
@C.Sakthivignesh
@C.Sakthivignesh Год назад
Thank you so much sir for made this video. Your teaching skills are awesome sir.
@RaghavPal
@RaghavPal Год назад
You are most welcome
@udaykiran-s5c
@udaykiran-s5c Год назад
Thanks Sir this Configuration Helped , Thanks a Lot for Your Efforts which is helping many people.
@RaghavPal
@RaghavPal Год назад
Most welcome Uday
@paridapolat8491
@paridapolat8491 2 года назад
Your video is truly step by step, very beneficial. Thank you so much for posting the video.
@RaghavPal
@RaghavPal 2 года назад
You are welcome!
@jahangiralikhan2410
@jahangiralikhan2410 6 лет назад
Brother your way of explanation is as simple and easy to understand & you fully justified your channel name i.e Automation step by step- Raghav pal, it is step by step thanks a lot :)
@RaghavPal
@RaghavPal 6 лет назад
Thanks a lot for your message Jahangir. I am humbled
@rohangawade5291
@rohangawade5291 Год назад
its very helpful and the way you teach is also great.
@RaghavPal
@RaghavPal Год назад
Glad to hear that Rohan
@tekkenfight3006
@tekkenfight3006 5 лет назад
Damn your explanation is on point! And your voice is clear and not irritating! U got my sub! Thank you!!!
@RaghavPal
@RaghavPal 5 лет назад
Glad to know this was helpful.
@kishorgupta3241
@kishorgupta3241 Год назад
Thanks for sharing your knowledge. I learned many new things from your tutorials. Thank you very much @Raghav Sir :)
@RaghavPal
@RaghavPal Год назад
Most welcome Kishor
@101_twentySomethings
@101_twentySomethings Год назад
I was able to do it on my macbook seamlessly. Thanks a tonne!
@RaghavPal
@RaghavPal Год назад
Most welcome Deepali
@rayan4203
@rayan4203 3 года назад
Very neat and detailed explanation, Thanks Raghav.
@RaghavPal
@RaghavPal 3 года назад
Most welcome Mohsin
@nachmeriraninach907
@nachmeriraninach907 Год назад
hello Raghav, thanks for making this so easy for us beginners. I hope you are reading ur comments still. I have one question if the Excel sheet has around 5 sets of usernames and passwords how does this work. how can I use them in cucumber log in
@RaghavPal
@RaghavPal Год назад
To use multiple sets of usernames and passwords for data-driven testing in Selenium with Java and Cucumber, you can follow the below steps: Store the username and password in a data file (such as a CSV, Excel, or JSON file) with each set of credentials in a separate row or object. Read the data file in your Java code using a library such as Apache POI or OpenCSV. Use a loop to iterate through the rows or objects in the data file, and for each iteration, retrieve the username and password values and pass them as parameters to your login step in Cucumber. In your Cucumber feature file, use placeholders for the username and password parameters, such as and . Use the Cucumber Scenario Outline syntax to define the login scenario with placeholders for the username and password, and provide the values for the placeholders in a table underneath the Scenario Outline. In the step definition, retrieve the username and password values from the placeholders using the Cucumber DataTable API. Here is an example of how the Cucumber feature file, step definition, and data file could look like: *Login.feature* Feature: User login Scenario Outline: Login with valid credentials Given I am on the login page When I enter "" and "" And I click the login button Then I should be logged in Examples: | username | password | | user1 | pass1 | | user2 | pass2 | | user3 | pass3 | *LoginSteps.java* @When("I enter {string} and {string}") public void i_enter_username_and_password(String username, String password) { LoginPage loginPage = new LoginPage(driver); loginPage.enterUsername(username); loginPage.enterPassword(password); } @Then("I should be logged in") public void i_should_be_logged_in() { // Assertions to verify login success } *data.csv* username,password user1,pass1 user2,pass2 user3,pass3 In this example, we are using a CSV file as the data source. We read the CSV file in the Java code using the OpenCSV library, iterate through the rows, and pass the username and password values to the Cucumber step definitions. In the Cucumber feature file, we use the Scenario Outline syntax to define the login scenario with placeholders for the username and password, and provide the values for the placeholders in a table underneath the Examples keyword.
@nachmeriraninach907
@nachmeriraninach907 Год назад
Thank you so much Raghav your detailed explanation, I appreciate your time and ur patience u have . Currently working on it , will get back to you with my results/ queries soon.Once again thank you@@RaghavPal
@varshabagewadi3338
@varshabagewadi3338 2 года назад
Tq Raghav it worked ... one more doubt..i want to read an empty row, that means i have 3 input fields and all are empty... is it possible? if so please comment the logic
@RaghavPal
@RaghavPal 2 года назад
Hi Varsha, check this ru-vid.com/video/%D0%B2%D0%B8%D0%B4%D0%B5%D0%BE-B4G2tMDYjRQ.html
@fitnessdaily7288
@fitnessdaily7288 3 года назад
I am learning all his videos very interesting and learned a lot from his courses. Thanks a lot
@RaghavPal
@RaghavPal 3 года назад
You are welcome!
@ummulwara5542
@ummulwara5542 5 лет назад
You did a super job in term of explaining the topic ,easily explained with right sequence .
@RaghavPal
@RaghavPal 5 лет назад
Thanks Ummul
@rameshwarkonale1763
@rameshwarkonale1763 2 года назад
Sir Awesome explained..bu i have question how we can read exel sheet has 1000 Id and 1000 password how we can give input continuesly
@RaghavPal
@RaghavPal 2 года назад
HI Rameshwar, will need to check, try to do hands-on and check the logs
@monicagoyal8225
@monicagoyal8225 3 года назад
Each and every concept is so nicely explained.Thanks for creating it.
@RaghavPal
@RaghavPal 3 года назад
Most welcome Monica
@jatothkavitha6012
@jatothkavitha6012 3 года назад
This class very useful the video thank you so much sir, exlent explain sir, very very thanks
@RaghavPal
@RaghavPal 3 года назад
You are most welcome
@keshavdwivedi5192
@keshavdwivedi5192 6 лет назад
Raghav it was a very helpful approach but please tell how to incorporate loop in this as in real time we have to read data from multiple cells at one go thanks in advance
@RaghavPal
@RaghavPal 6 лет назад
Hi Keshav, I will post a video for that on Monday
@TheNishi42
@TheNishi42 6 лет назад
Waiting for same video with loops where we can use this excel data with real test scenario !!
@sachin21890
@sachin21890 5 лет назад
+1
@lillyberta422
@lillyberta422 2 года назад
Great tutorial. One question, this method works for both BDD and TestNG frameworks?
@RaghavPal
@RaghavPal 2 года назад
Yes, its a java code, will work, Can also see this ru-vid.com/video/%D0%B2%D0%B8%D0%B4%D0%B5%D0%BE-B4G2tMDYjRQ.html
@lillyberta422
@lillyberta422 2 года назад
@@RaghavPal I really appreciate your response. Thank you for everything you do for us.
@ashvinmonani1839
@ashvinmonani1839 3 года назад
Great work sir🙏 very easy explanation. i'm learning selenium automation from your videos. Thank you so much sir.
@RaghavPal
@RaghavPal 3 года назад
So nice of you
@krusharthshah3740
@krusharthshah3740 2 года назад
Hi. This is an amazing video. Very detailed step by step explanation. Thank you! But if we have a huge database in Excel, it is inconvenient to add every time the number of row and column in getCellData to print the values. Can you please show how we can use the for loop here so we can get the whole set of values in one go as output?
@RaghavPal
@RaghavPal 2 года назад
Hi Krusharth, I will plan to work on this
@varunbhardwaj191
@varunbhardwaj191 2 года назад
Awesome video... thankyou so much
@RaghavPal
@RaghavPal 2 года назад
Most welcome Varun
@varshabagewadi3338
@varshabagewadi3338 2 года назад
Very usefull video ,tq so much .. but one doubt can u explain a generic mehtod for reading excel containing both string value numeric value and how to read an empty cell.My excel has all type of values.. please makw a video..
@RaghavPal
@RaghavPal 2 года назад
Hi Varsha, sure, check this - ru-vid.com/video/%D0%B2%D0%B8%D0%B4%D0%B5%D0%BE-B4G2tMDYjRQ.html
@varshabagewadi3338
@varshabagewadi3338 2 года назад
Tq Raghav it worked ... one more doubt..i want to read an empty row, that means i have 3 input fields and all are empty... is it possible? if so please comment the logic
@RaghavPal
@RaghavPal 2 года назад
Yes, if you follow the video, You will get it
@onlineaccount9073
@onlineaccount9073 3 года назад
superb explanation ......
@RaghavPal
@RaghavPal 3 года назад
Thanks a lot
@swapnab7239
@swapnab7239 3 года назад
Hi sir...easy explanation...how to get data from excel to fill any application everytime....real-time example please
@RaghavPal
@RaghavPal 3 года назад
Hi Swapna, did not get "fill any application everytime", you will need to do the setup based on the platform
@AnalysisWithVinay
@AnalysisWithVinay 4 года назад
Thanks for the videos.Everything is explained in detail in all the videos.
@RaghavPal
@RaghavPal 4 года назад
You're welcome Vinay
@kishore76dhaka
@kishore76dhaka 4 года назад
I recommend everyone to visit your channel.
@RaghavPal
@RaghavPal 4 года назад
Thanks a ton
@vickyyang7393
@vickyyang7393 4 года назад
It is very clear and I can understand everything. Thx.
@RaghavPal
@RaghavPal 4 года назад
You're welcome Vicky
@nidaiqbal8949
@nidaiqbal8949 4 года назад
as a beginner in selenium java, whether knowing all syntax, methods, classes like where and when which selenium syntax is used with java. But how to build a tricky program logic by merging selenium and java code fastly as a beginner? This makes conflicts to learn selenium java
@RaghavPal
@RaghavPal 4 года назад
Hi Nida, I will suggest that you do a basic Java course and can start with Selenium Java Framework. You will also learn more as you create the framework. Can take help from programming section here automationstepbystep.com/
@nidaiqbal8949
@nidaiqbal8949 4 года назад
@@RaghavPal thanks
@zuzanafarkasova5244
@zuzanafarkasova5244 4 года назад
Great tutorial from great teacher. Raghav, your tutorials are really helpful. Thanks!
@RaghavPal
@RaghavPal 4 года назад
Glad it was helpful Zuzana
@rajshriabojwar2535
@rajshriabojwar2535 4 года назад
Very well explained ☺️. Thankyu Raghav
@RaghavPal
@RaghavPal 4 года назад
Most welcome Rajshri
@pravinbirajdar7314
@pravinbirajdar7314 3 года назад
Hi raghav, how many videos r available of selenium testing
@RaghavPal
@RaghavPal 3 года назад
Hi Pravin, can check here automationstepbystep.com/
@riteshwankhede3259
@riteshwankhede3259 6 лет назад
waiting long time for this Chapter..thanks MAN :)
@RaghavPal
@RaghavPal 6 лет назад
You're welcome Ritesh
@mzamomahaeng268
@mzamomahaeng268 4 года назад
Wow talk about a masterclass 👌👌👌thank you
@RaghavPal
@RaghavPal 4 года назад
Thanks, Mzamo
@divyadeshmukh3335
@divyadeshmukh3335 4 года назад
Best tutorial I could find to understand working on Excel with Java. Thank you so much Raghav Sir!
@RaghavPal
@RaghavPal 4 года назад
So happy to know this Divya, this can also help - ru-vid.com/video/%D0%B2%D0%B8%D0%B4%D0%B5%D0%BE-B4G2tMDYjRQ.html
@Vinodmhetre007
@Vinodmhetre007 3 года назад
Thank you for the video. I would like to know the difference between poi and poi-ooxml versions in maven repo. Why did we use ooxml?
@RaghavPal
@RaghavPal 3 года назад
hi, the OO in ooxml stands for Open Office. ooxml is a XML-based file format developed by Microsoft for representing spreadsheets, charts, presentations and word processing documents. so it is a Java API To Access Office Open XML documents To work with these docs you will need ooxml api
@Vinodmhetre007
@Vinodmhetre007 3 года назад
@@RaghavPal Thank you.
@Kiranreddy09
@Kiranreddy09 3 года назад
Hi Raghav, is it possible to compare two Excel sheets by using selenium webdriver or any other tools? I have scenario like I already have one excel file(sheet1) with some data in File Explorer and I need to open my application and download Excel file(sheet2) through browser. Later I need to compare sheet2 to sheet1 without read and write data.
@RaghavPal
@RaghavPal 3 года назад
Hi Kiran, not with Selenium, will need to check other tools
@mahikarnati3630
@mahikarnati3630 3 года назад
your calling static method by using reference variable .is it good approach in java? (ex ; excel.getCellDataString(0,0))
@RaghavPal
@RaghavPal 3 года назад
it is legal, although some coding standards may give warnings
@deeparanchi
@deeparanchi 4 года назад
explained in a brilliant way!!! Thank you so much
@RaghavPal
@RaghavPal 4 года назад
You're welcome Deepshikha
@rajeshdevan6051
@rajeshdevan6051 5 лет назад
Hi Raghav, Awesome teaching and thanks for this video and Could you please make video about how to read web table data's and write that data's into excel sheet so please this is one of the real time project concept asking at interviews.
@RaghavPal
@RaghavPal 5 лет назад
Hi Rajesh, thanks for your message. I will do it in some time
@rajeshdevan6051
@rajeshdevan6051 5 лет назад
@@RaghavPal ok Raghav. Thank you and am waiting for your new videos ...
@anupkapale7953
@anupkapale7953 6 лет назад
Thanks for the video. Could you make a video, to read data from Json instead of excel file? Thanks!!
@RaghavPal
@RaghavPal 6 лет назад
Hi Anup, I will check it soon
@arpanbhagat
@arpanbhagat 3 года назад
@@RaghavPal Hi Raghav, Did you had chance to make a read data from Json ? This will be very helpful when we test API
@pavang2827
@pavang2827 2 года назад
Hi Raghav how we can write the test script using selenium java for comparing links(a tags) with the expected link (in Excel) in the UI Page
@RaghavPal
@RaghavPal 2 года назад
I will check Pavan, for now will need to take online help
@englishanti
@englishanti 3 года назад
You are the best
@RaghavPal
@RaghavPal 3 года назад
Humbled
@DucNguyen-xn5bd
@DucNguyen-xn5bd 5 лет назад
Hi Raghav, how abt cell with value include string and nummeric?
@RaghavPal
@RaghavPal 5 лет назад
Hi Duc, have explained it here - ru-vid.com/video/%D0%B2%D0%B8%D0%B4%D0%B5%D0%BE-CV3SOorFydE.html
@blankbox33
@blankbox33 4 года назад
Very nice tutorial indeed. i have learnt alot from you Raghav pal ji..keep up the good work.. (which in your case ,we can replace good keyword with Excellent) :)
@RaghavPal
@RaghavPal 4 года назад
So happy to know this Shailendra
@Vinodmhetre007
@Vinodmhetre007 3 года назад
Can we use just the Apache POI jar directly from MVNRepository?
@RaghavPal
@RaghavPal 3 года назад
Hi, it depends on the kind of documents you are working with, Can try and check
@Vinodmhetre007
@Vinodmhetre007 3 года назад
@@RaghavPal Thank you.
@pankajsahu1657
@pankajsahu1657 Год назад
Thankyou sir ❤
@RaghavPal
@RaghavPal Год назад
Most welcome Pankaj
@subhasrinayak3670
@subhasrinayak3670 2 года назад
Nice explanation, but you are writing and removing in between which is little challenging for beginner like me, can you please show the code after completion
@RaghavPal
@RaghavPal 2 года назад
will take care Subhasri
@K.Ajaykumar
@K.Ajaykumar Год назад
Raghav, if I want to pass Excel data for some login credentials in chrome. How to pass this data instead of printing in console? Please reply to me
@RaghavPal
@RaghavPal Год назад
Hi Ajay Sure, you can pass Excel data for some login credentials in Chrome using Selenium Java. Here are the steps on how to do it: 1. Create an Excel file and save it in a location that you can access from your Java program. 2. In the Excel file, create a sheet named "LoginCredentials" and add the following columns: * Username * Password 3. Save the Excel file. 4. In your Java program, create a `WebDriver` object and start a new instance of Chrome. 5. Import the `org.apache.poi.ss.usermodel.Workbook` class. 6. Create a `Workbook` object and load the Excel file that you created in Step 1. 7. Get the sheet named "LoginCredentials" from the `Workbook` object. 8. Get the cell values for the `Username` and `Password` columns. 9. Use the `WebDriver` object to login to the website using the credentials that you got from the Excel file. Here is an example of how to do this in Java: ```java import org.apache.poi.ss.usermodel.Workbook; import org.openqa.selenium.WebDriver; public class LoginWithExcelData { public static void main(String[] args) { WebDriver driver = new ChromeDriver(); // Load the Excel file Workbook workbook = WorkbookFactory.create(new File("login_credentials.xlsx")); // Get the sheet named "LoginCredentials" Sheet sheet = workbook.getSheet("LoginCredentials"); // Get the cell values for the "Username" and "Password" columns String username = sheet.getRow(0).getCell(0).getStringCellValue(); String password = sheet.getRow(0).getCell(1).getStringCellValue(); // Login to the website driver.get("www.example.com"); driver.findElementById("username").sendKeys(username); driver.findElementById("password").sendKeys(password); driver.findElementById("login").click(); } } ``` This code will load the Excel file named `login_credentials.xlsx` and get the cell values for the `Username` and `Password` columns. The code will then use the `WebDriver` object to login to the website using the credentials that it got from the Excel file
@srija_sk
@srija_sk 4 года назад
Thank you so much Sir,!!! This helped me a lot. Keep Rocking
@RaghavPal
@RaghavPal 4 года назад
Most welcome!
@sreeragph2069
@sreeragph2069 Год назад
Thank you so much
@RaghavPal
@RaghavPal Год назад
You're most welcome
@dewanshu
@dewanshu 3 года назад
Thanks ❤️
@RaghavPal
@RaghavPal 3 года назад
Most welcome Dewanshu
@rajeshrao5099
@rajeshrao5099 6 лет назад
Good explanation
@RaghavPal
@RaghavPal 6 лет назад
Thanks Rajesh
@mrolle282
@mrolle282 3 года назад
Hey Raghav :) , another awesome tutorial. Iam just wondering why we get "123.0" as ouput in the console. Is there any reason or way to remove this ".0" ? regards Mario
@RaghavPal
@RaghavPal 3 года назад
It is taking as float, you can do casting,
@9745754904
@9745754904 5 лет назад
Hi Raghav have a doubt,if we have data driven(through excel) and POM in our framework, will.it be called as a hybrid framework or just data driven framework
@RaghavPal
@RaghavPal 5 лет назад
Hi Jino, POM can be implemented in data-driven, keyword and hybrid framework as well. Do it does not always mean if you have POM and data driven, then it will be called hybrid always
@9745754904
@9745754904 5 лет назад
@@RaghavPal If i.hv only data driven and.pom .what framework would.it be?
@RaghavPal
@RaghavPal 5 лет назад
it will still be data driven framework
@9745754904
@9745754904 5 лет назад
@@RaghavPal Thanks Raghav.
@NizamNeha
@NizamNeha 5 лет назад
Hello. The way of Ur teaching is good. I'm getting an error while performing to read the data from Excel by using while loop. i.e, Exception in thread "main" java.lang. error; unresolved compilation problem. CELL_TYPE_STRING Cannot be resolved or is not a field. Please help me to resolve this problem. I'm using selenium 3x .
@RaghavPal
@RaghavPal 5 лет назад
Hi Gagan, this is due to the data type in your excel. you are either using numerical data in excel and trying to get a string in code or vice versa. Pls check. I believe I have also covered this in the video on numeric and string data type.
@shaan597
@shaan597 Год назад
I have a doubt Raghav, without using Inheritance how you are able to call the functions of Excelutil in Excelutildemo class
@RaghavPal
@RaghavPal Год назад
By creating objects
@RAHUL-hq1yl
@RAHUL-hq1yl 2 года назад
Please let me know how to read Alphanumeric values from cell
@RaghavPal
@RaghavPal 2 года назад
Hi Rahul, this can help - ru-vid.com/video/%D0%B2%D0%B8%D0%B4%D0%B5%D0%BE-B4G2tMDYjRQ.html
@jerinthomas3283
@jerinthomas3283 4 года назад
Yeah Really its good and understandable, But i have to know if i have 10 column and 6 rows how will get it?
@jerinthomas3283
@jerinthomas3283 4 года назад
int rowCount = sheet1.getLastRowNum(); //int columncount=shee1.getLast int lastCellNumber = sheet1.getRow(0).getLastCellNum(); System.out.println(lastCellNumber); for(int i=1;i
@RaghavPal
@RaghavPal 4 года назад
Check if this helps - ru-vid.com/video/%D0%B2%D0%B8%D0%B4%D0%B5%D0%BE-B4G2tMDYjRQ.html
@luvpreetsingh8566
@luvpreetsingh8566 5 лет назад
Hey pls help.. m getting an error.. null pointer exception and getting values as null.. There are two main methods one in excelutils and one in excelutilsdemo.. wen i remove excelutils main method, it works properly! Wat to do?
@surendran8008
@surendran8008 2 года назад
Hello, How to read a combination of string, numberic and special charcter value form the cell. eg: Jan@2021
@RaghavPal
@RaghavPal 2 года назад
can check this - ru-vid.com/video/%D0%B2%D0%B8%D0%B4%D0%B5%D0%BE-B4G2tMDYjRQ.html
@surendran8008
@surendran8008 2 года назад
@@RaghavPal - Thanks much sir for replying
@sunilkumarp1630
@sunilkumarp1630 5 лет назад
Hi raghav, I'm getting this error, Could you please help me on it. I have followed the same like how u showed in video. null java.lang.NullPointerException at utils.Excelutils.getRowCount(Excelutils.java:21) at utils.Excelutils.main(Excelutils.java:10)
@RaghavPal
@RaghavPal 5 лет назад
Hi Sunil, this is not the complete logs. There is some code error at Excelutils.getRowCount(Excelutils.java:21) I will need full logs and your code to check
@orlandodelacruz4027
@orlandodelacruz4027 4 года назад
Really really really.. I mean really useful! Thank you so much! 😎👌
@RaghavPal
@RaghavPal 4 года назад
Glad it was helpful Orlando
@aruproy9815
@aruproy9815 3 года назад
Thank you so much for the video. but please help me with this Exception : Exception in thread "main" java.lang.NullPointerException: Cannot invoke "org.apache.poi.xssf.usermodel.XSSFSheet.getPhysicalNumberOfRows()" because "sheet" is null at DataProvider.getRowCount(DataProvider.java:14) at DataProvider.main(DataProvider.java:8) when I am running the file above exception is coming in the console window.
@RaghavPal
@RaghavPal 3 года назад
Hi Arup, will need to check the code and error logs
@papunkumar8761
@papunkumar8761 Год назад
Hello Raghav, Thank you very much for this informative video once again. I just want to know that while executing the program after calling the getCellDataNumber() function in the main method, I am getting nullPointerException with the message "Cannot invoke "org.apache.poi.xssf.usermodel.XSSFRow.getCell(int)" because the return value of "org.apache.poi.xssf.usermodel.XSSFSheet.getRow(int)" is null". Can you please reply how to handle them so that we don't get such exceptions further? Thanks,
@RaghavPal
@RaghavPal Год назад
Hi Papun The NullPointerException you are getting is because the `XSSFRow.getCell()` method is trying to access a cell that does not exist. This can happen if the `XSSFSheet.getRow()` method returns `null`. There are a few ways to handle this exception. One way is to add a null check before calling the `XSSFRow.getCell()` method. For example: ```java XSSFRow row = sheet.getRow(1); if (row != null) { int cellValue = row.getCell(0).getNumericCellValue(); } else { // Handle the case where the row is null } ``` Another way to handle this exception is to use the `try-catch` block. For example: ```java try { int cellValue = row.getCell(0).getNumericCellValue(); } catch (NullPointerException e) { // Handle the case where the row is null } ``` The `try-catch` block will catch the NullPointerException and you can handle it accordingly. Here are some other things you can do to prevent this exception: * Make sure that the `XSSFSheet.getRow()` method returns a valid row before calling the `XSSFRow.getCell()` method. * Use the `XSSFRow.getPhysicalNumberOfCells()` method to check the number of cells in a row before calling the `XSSFRow.getCell()` method
@subhadeepchatterjee7439
@subhadeepchatterjee7439 Год назад
Is it compulsory to call functions?
@RaghavPal
@RaghavPal Год назад
It will be convenient and efficient to keep the logic in separate reusable functions
@kshipra4504
@kshipra4504 2 года назад
Is it possible to work with online excel data sheet in my selenium framework? I don't have ms office in my system.
@RaghavPal
@RaghavPal 2 года назад
Yes, you can use open office, KingSoft office or try with other options and check
@kshipra4504
@kshipra4504 2 года назад
@@RaghavPal No such software installation is permitted on client machine. Only Google sheets are allowed. Can you suggest solution for this? "Reading/writing data in Google sheet in selenium with Java"
@kshipra4504
@kshipra4504 2 года назад
Any solution?
@RaghavPal
@RaghavPal 2 года назад
Hi Kshipra, I have not tried, can check this stackoverflow.com/questions/56321292/read-write-data-in-google-spreadsheet medium.com/appgambit/read-data-from-google-sheet-with-selenium-ans-google-sheets-api-c5d10595f781
@arjunms1736
@arjunms1736 6 лет назад
Thank you so much sir...was waiting for this...sir i have one doubt how to fetch all the values of a single row...pls help
@RaghavPal
@RaghavPal 6 лет назад
Hi Arjun, will post a video for that on Monday
@arjunms1736
@arjunms1736 6 лет назад
Ok sir waiting for that video.thanks a lot
@RaghavPal
@RaghavPal 6 лет назад
Check here ru-vid.com/video/%D0%B2%D0%B8%D0%B4%D0%B5%D0%BE-02ANy2pu_ZA.html
@purvikala614
@purvikala614 3 года назад
Hi Raghav, I am getting error as - Exception in thread "main" java.lang.NullPointerException I have followed exact same steps as you showed, what I might have done wrong? Or how can I fix this error?
@RaghavPal
@RaghavPal 3 года назад
Hi Purvi, generally null pointer exception comes when you try to use a variable that is not pointing to any object. The most common way to handle it is create a try catch block around the code that is throwing this exception and in the catch block write *catch(Exception exp){ system.out.println (exp.getCause()); system.out.println (exp.getMessage()); system.out.println (exp.printStackTrace()); }* Take care of syntax, spelling, I am just writing directly. www.educative.io/edpresso/how-to-resolve-the-javalangnullpointerexception
@gilsonsouza8159
@gilsonsouza8159 3 года назад
Hi, How so save the excel file using Selenium after write and add some rows?
@RaghavPal
@RaghavPal 3 года назад
Hi Gilson, Selenium does not have any function for this, will need java for this. stackoverflow.com/questions/38750780/how-to-open-and-save-excel-file-in-java
@gilsonsouza8159
@gilsonsouza8159 3 года назад
@@RaghavPal Thank you so much!!!
@jillbv9380
@jillbv9380 2 года назад
just trying to learn, at 19:38 why do you make variables static?
@RaghavPal
@RaghavPal 2 года назад
mainly for memory management
@jillbv9380
@jillbv9380 2 года назад
@@RaghavPal I still don't understand when to use static, I have the idea that the value you assign is fixed and will never change
@RaghavPal
@RaghavPal 2 года назад
I will try to do a session on this
@jillbv9380
@jillbv9380 2 года назад
@@RaghavPal that would be wonderful, I love your channel
@sagarshrestha7418
@sagarshrestha7418 3 года назад
when i tried to create the other class and call the functions there in video 32:59. I got the errror saying utils.Excelutils.sheet is null
@RaghavPal
@RaghavPal 3 года назад
Hi Sagar, just check if you have given the sheet path and name correctly and if you are referring to the cells with some data
@sagarshrestha7418
@sagarshrestha7418 3 года назад
@@RaghavPal thank you very much. I saw so many videos and resources , i found this data provider concept is simple and best for me. WHat do you recommend me to look now?
@RaghavPal
@RaghavPal 3 года назад
Hi Sagar, as I said in earlier comment check the name, path and cells. Also see if you get specific info in logs
@wasimakram-nz5gq
@wasimakram-nz5gq 4 года назад
Hi sir, In excel if it is a string we use getstringvalue and get data for numberic we use getnumbericcellvalu and get data if one row is empty and next row has data how to overcome that empty row and get next row value iam facing error with this can you help me on this
@RaghavPal
@RaghavPal 4 года назад
Hi Wasim, watch this ru-vid.com/video/%D0%B2%D0%B8%D0%B4%D0%B5%D0%BE-B4G2tMDYjRQ.html
@wasimakram-nz5gq
@wasimakram-nz5gq 4 года назад
Thank you sir
@rangabharath4253
@rangabharath4253 5 лет назад
Awesome
@RaghavPal
@RaghavPal 5 лет назад
Thanks for watching
@syedhannan8588
@syedhannan8588 4 года назад
I tried adding (external jars) poi API for excel, it's not getting added..can you plz share the link to download the same for excel file
@RaghavPal
@RaghavPal 4 года назад
Hi Syed, you can add maven dependencies in pom.xml mvnrepository.com/search?q=poi
@VikashKumar-sg9uy
@VikashKumar-sg9uy 3 года назад
can you please write a code to fetch the username and inject in test script to login a site ?
@RaghavPal
@RaghavPal 3 года назад
I will plan Vikash
@broshini5023
@broshini5023 3 года назад
I am getting java.Lang.exceptioninitializer error while trying to import from excel, is that because I am using latest jdk version 15.
@RaghavPal
@RaghavPal 3 года назад
Hi Roshini, not very sure if its java issue, Just check online
@ihrwellyurtas9155
@ihrwellyurtas9155 3 года назад
Hi Raghav, Im getting this error Exception in thread "main" org.apache.poi.openxml4j.exceptions.InvalidOperationException: Can't open the specified file: 'C:\Users\ihrwell\Desktop\Automation Webdriver\Projects\Sample\E2EProject\testdata\data.xlsx'
@RaghavPal
@RaghavPal 3 года назад
Hi Ihrwell, there must be some more information in the logs, as to what exactly is the issue in the file, Check the path is correct and the file is saved and closed
@ihrwellyurtas9155
@ihrwellyurtas9155 3 года назад
@@RaghavPal Hi Sir I got the problem :) there is a spacing on the file location thank
@VINAYKUMAR-gv4tx
@VINAYKUMAR-gv4tx 3 года назад
how can we sort the data from excel sheet sir
@RaghavPal
@RaghavPal 3 года назад
We can Vinay, try checking some java tutorials on this
@dasarianveshitha7386
@dasarianveshitha7386 7 месяцев назад
Hi praveen i am getting error on text value from a numeric cell
@RaghavPal
@RaghavPal 7 месяцев назад
Praveen will need to see the details of your steps and error logs
@socialmediahappy8697
@socialmediahappy8697 3 года назад
i use isdisplay to check the presence of element means button On listing page of flight there is so many flight how can i check the presence of element(Button) for every flight
@RaghavPal
@RaghavPal 3 года назад
It will mostly be an html table, you can capture and check the presence of button in a specific column
@socialmediahappy8697
@socialmediahappy8697 3 года назад
@@RaghavPal how can i find on the google related this situtation
@socialmediahappy8697
@socialmediahappy8697 3 года назад
provide me some link related to this quaries
@RaghavPal
@RaghavPal 3 года назад
See in this example code is used to get text from each cell of the table, You can customize this for your needs
@socialmediahappy8697
@socialmediahappy8697 3 года назад
@@RaghavPal i cant understand ur words give me some progrmme related to this
@sagarshrestha7418
@sagarshrestha7418 3 года назад
i did the exactly the same but i am getting the error which says premature end of file?
@RaghavPal
@RaghavPal 3 года назад
hi Sagar, in your excel select all the rows after the last row with some data and then delete all these empty rows and try again
@praveenkumarmurugesan296
@praveenkumarmurugesan296 4 года назад
Hii sir ..while i using @DataProvider... it will not importing. .tells error like create annotation 'DataProvider'.... what I do '
@RaghavPal
@RaghavPal 4 года назад
Hi Praveen, Have you added TestNG library in pom.xml. Try to add again and save and check
@praveenkumarmurugesan296
@praveenkumarmurugesan296 4 года назад
@@RaghavPal tq for your reply sir... its working. ..
@nitinjangra4773
@nitinjangra4773 4 года назад
when i print celldata in syso then it is showing celldata instead of username. how to solve it
@RaghavPal
@RaghavPal 4 года назад
Hi Nitin, pls check this video - ru-vid.com/video/%D0%B2%D0%B8%D0%B4%D0%B5%D0%BE-B4G2tMDYjRQ.html
@asmashaikshaik7896
@asmashaikshaik7896 3 года назад
Hi sir D's is not working to read the data not testing the test data
@RaghavPal
@RaghavPal 3 года назад
Check the setup again Asma
@asmashaikshaik7896
@asmashaikshaik7896 3 года назад
@@RaghavPal Follow D's steps but can't working
@sesh07
@sesh07 6 лет назад
When I'm trying to this it displaying error msg: "NoClassDeffoundError", How to resolve this issue ?
@RaghavPal
@RaghavPal 6 лет назад
Hi, will need to see where exactly you are getting this. Pls send logs
@sesh07
@sesh07 6 лет назад
@@RaghavPal it working for .xls files but not working for .xlsx files
@RaghavPal
@RaghavPal 6 лет назад
Okay, you must have used HSSF, try using XSSF workbook libraries of POI
@sesh07
@sesh07 6 лет назад
@@RaghavPal yes, I already tried with xssf but it's not working it showing as same error as class not found
@RaghavPal
@RaghavPal 6 лет назад
Pls try changing version of POI
@learnvik
@learnvik 6 лет назад
your tutorial seems clean but somehow I am getting class not found exception. I copied the same code as you showed. package AllExcel; import org.apache.poi.xssf.usermodel.XSSFSheet; import org.apache.poi.xssf.usermodel.XSSFWorkbook; public class ExcelUtils { public static void main(String[] args) { getRowCount(); } public static void getRowCount() { try { // String projectPath = System.getProperty("user.dir"); // XSSFWorkbook workbook = new XSSFWorkbook(projectPath+"/testdata/AddDep.xlsx"); XSSFWorkbook workbook = new XSSFWorkbook("absolute path"); XSSFSheet sheet = workbook.getSheetAt(0); int rowCount = sheet.getPhysicalNumberOfRows(); System.out.println("Number of rows : "+rowCount); } catch(Exception e) { System.out.println(e.getMessage()); System.out.println(e.getCause()); e.printStackTrace(); } } } Error = Exception in thread "main" java.lang.NoClassDefFoundError: org/apache/commons/compress/archivers/zip/ZipFile at org.apache.poi.openxml4j.opc.OPCPackage.open(OPCPackage.java:234) at org.apache.poi.openxml4j.opc.OPCPackage.open(OPCPackage.java:167) at org.apache.poi.ooxml.POIXMLDocument.openPackage(POIXMLDocument.java:89) at org.apache.poi.xssf.usermodel.XSSFWorkbook.(XSSFWorkbook.java:340) at AllExcel.ExcelUtils.getRowCount(ExcelUtils.java:17) at AllExcel.ExcelUtils.main(ExcelUtils.java:9) Caused by: java.lang.ClassNotFoundException: org.apache.commons.compress.archivers.zip.ZipFile at java.net.URLClassLoader.findClass(Unknown Source) at java.lang.ClassLoader.loadClass(Unknown Source) at sun.misc.Launcher$AppClassLoader.loadClass(Unknown Source) at java.lang.ClassLoader.loadClass(Unknown Source)
@RaghavPal
@RaghavPal 6 лет назад
Hi Viki, the error logs complaining of some zip format. Caused by: java.lang.ClassNotFoundException: org.apache.commons.compress.archivers.zip.ZipFile Are you using a maven project. Not sure if you are referring to some zip file. Check this - stackoverflow.com/questions/28229095/apache-commons-compress-using-7zip
@learnvik
@learnvik 6 лет назад
Hi Raghav, thanks for your response, I had also posted my error on stackoverflow and got the resolution, There was something missing in the latest Apache poi library as I am not using Maven, so had to download it and added to build path. Your tutorial worked for me, I am also looking to use excel data with Testng dataproviders using for loop, do you have any tutorial on that ? Again, appreciate you taking time for resolving public issues.
@RaghavPal
@RaghavPal 6 лет назад
Glad to know this Viki. Happy Learning...
@learnvik
@learnvik 6 лет назад
Can you add a tutorial on TestNG dataprovider using the above excel data driven approach ? Basically Testng Dataprovider with Excel ?
@RaghavPal
@RaghavPal 6 лет назад
Hi Viki, you can see this ru-vid.com/video/%D0%B2%D0%B8%D0%B4%D0%B5%D0%BE-02ANy2pu_ZA.html And other selenium videos here - automationstepbystep.com/ui-testing/
@gvvprasad4744
@gvvprasad4744 5 лет назад
how to read values from excel for "Dropdown". I wrote the below code but it's not working, It not showing any errors also. Please check the screenshot: drive.google.com/file/d/1cezdMCTauOoQOJJR2hl64kTHV__Aws_L/view?usp=drivesdk
@RaghavPal
@RaghavPal 5 лет назад
Hi Prasad, will need to see more details. Pls try as shown in video
@Deniz-ss1sv
@Deniz-ss1sv 3 года назад
:)
@mudaseerahmed3944
@mudaseerahmed3944 3 года назад
Hi ur GitHub url
@RaghavPal
@RaghavPal 3 года назад
github.com/Raghav-Pal/SeleniumJavaFramework1
@mudaseerahmed3944
@mudaseerahmed3944 3 года назад
@@RaghavPal thanks
@philb4462
@philb4462 Год назад
This is a great session, Raghav. I learned a ton of really useful stuff. Incitentally, where you use a function to get "user.dir", I have found that a dot character does the same thing. So I used this path for my spreadsheet: "./excel/LoginCredentials.xlsx". Is there a particular reason you don't do that?
@RaghavPal
@RaghavPal Год назад
Hi Phil, you can do that, I may have missed
@doubts-z5i
@doubts-z5i Год назад
Hi..am getting below error..How can i fix it? I was following the exact steps mentioned on the video "Cannot invoke "org.apache.poi.xssf.usermodel.XSSFSheet.getPhysicalNumberOfRows()" because "Utils.ExcelUtils.sheet" is null java.lang.NullPointerException: Cannot invoke "org.apache.poi.xssf.usermodel.XSSFSheet.getRow(int)" because "Utils.ExcelUtils.sheet" is null Cannot invoke "org.apache.poi.xssf.usermodel.XSSFSheet.getRow(int)" because "Utils.ExcelUtils.sheet" is null at Utils.ExcelUtils.getCelldataString(ExcelUtils.java:47) at Utils.ExcelUtils.main(ExcelUtils.java:26) Cannot invoke "org.apache.poi.xssf.usermodel.XSSFSheet.getRow(int)" because "Utils.ExcelUtils.sheet" is null"
@RaghavPal
@RaghavPal Год назад
The error message "Cannot invoke "org.apache.poi.xssf.usermodel.XSSFSheet.getPhysicalNumberOfRows()" because "Utils.ExcelUtils.sheet" is null" means that the `sheet` variable is null. This can happen if you have not initialized the `sheet` variable, or if you have initialized it to a value of null. To fix this error, you need to initialize the `sheet` variable to a valid Excel sheet object. You can do this by opening the Excel sheet file and creating a new XSSFSheet object. Here is an example of how to initialize the `sheet` variable: ```java FileInputStream fis = new FileInputStream("my_excel_file.xlsx"); XSSFWorkbook workbook = new XSSFWorkbook(fis); XSSFSheet sheet = workbook.getSheet("Sheet1"); ``` Once you have initialized the `sheet` variable, you should be able to access the rows and cells in the Excel sheet without any errors. Here is an example of how to access the rows and cells in the Excel sheet: ```java int rowCount = sheet.getPhysicalNumberOfRows(); for (int i = 0; i < rowCount; i++) { XSSFRow row = sheet.getRow(i); int cellCount = row.getPhysicalNumberOfCells(); for (int j = 0; j < cellCount; j++) { Cell cell = row.getCell(j); String cellValue = cell.getStringCellValue(); System.out.println(cellValue); } } ``` This code will print the value of each cell in the Excel sheet to the console. I hope this helps
@ilavarasansriraman4140
@ilavarasansriraman4140 3 года назад
Thanks ❤
@RaghavPal
@RaghavPal 3 года назад
You're welcome Ilavarasan
Далее
Write Excel Files with Java
13:40
Просмотров 61 тыс.