#10 - DataTable (asLists) in Cucumber BDD (Part 1) - Latest 2021

  Рет қаралды 50,739

Naveen AutomationLabs

Naveen AutomationLabs

Күн бұрын

Пікірлер: 38
@startareq
@startareq 3 жыл бұрын
Thanks, Naveen, for the best in each part of Automation
@lokeshlulla3101
@lokeshlulla3101 Ай бұрын
Thanks @Naveen a good refresher
@Biswajit115
@Biswajit115 4 жыл бұрын
awesome.. has been waiting for it.. watching during a client call :D
@naveenautomationlabs
@naveenautomationlabs 4 жыл бұрын
Haha 😂
@user-yb2fc1ur6g
@user-yb2fc1ur6g 4 жыл бұрын
Learning new concepts ..thq🙏
@harishkce1989
@harishkce1989 Жыл бұрын
can datatable and examples be used in same feature file ..technically ??
@sonalsarpane3601
@sonalsarpane3601 4 жыл бұрын
Nice series Naveen. Please cover the concepts like running particular scenario using testNG.xml and state sharing concepts.
@JitendraKumar-lr3vq
@JitendraKumar-lr3vq 4 жыл бұрын
it will be awesome to learn serenity ,extent report with cucumber..
@abinashbehera2409
@abinashbehera2409 3 жыл бұрын
Nice, Please share more concepts and Videos, Specially on the Extent reporting part. Running Cucumber with TestNG. Parallel test capabilities.
@shailweb07
@shailweb07 4 жыл бұрын
Very good .. Keep it UP..
@naveenautomationlabs
@naveenautomationlabs 4 жыл бұрын
Thank you so much 😀
@SarangHoley
@SarangHoley 4 жыл бұрын
Thanks for the video 👍😊
@yashuy3279
@yashuy3279 2 жыл бұрын
Thank you sir 🙂
@jayshreebraley320
@jayshreebraley320 4 жыл бұрын
can we use Examples keyword with dataTable or both are different concept?
@lakshmiy4103
@lakshmiy4103 4 жыл бұрын
Made the concept so clear and simple, thanks a lot, one question - here u are passing 3 sets of data but suppose if we have multiple sets of data, then should we use the third party files.
@dilipgaikwad4763
@dilipgaikwad4763 Жыл бұрын
naveen thanks a lot for this video its very helpful, just a request you to please upload a video on validation of table values on web page using data Table in feature file.
@ramadheer
@ramadheer 3 жыл бұрын
@Naveen great Tutorials,can we implement Serenity reports feature for the existing framework(we are following Page object model with Cucumber/Maven/Junit and Java)Please Advise.
@Sehkarskr
@Sehkarskr 4 жыл бұрын
Hi naveen Please upload a video to create Extent report in cucumber with screenshot for failure scenarios.
@ishataahitan149
@ishataahitan149 3 жыл бұрын
Hi Naveen, Please suggest how can we pass null values in feature file. I am verifying a scenario where I have to keep some parameters blank. How can we achieve this in feature file?
@kranthijangampet2338
@kranthijangampet2338 2 жыл бұрын
Hi Ishata, I also faced similar challenge - I want to pass a space through feature file pipes. Please let me know if you have found a solution to this.
@reenep91
@reenep91 3 жыл бұрын
Hi Naveen can we access the data that defined in examples through datatable?
@surbhisaxena1729
@surbhisaxena1729 3 жыл бұрын
I am also stuck on this.can someone please explain
@user-gh2kr5kz1x
@user-gh2kr5kz1x 4 жыл бұрын
Pls explain about jhenkins for CICD and customized reports in cucumber.
@tohfatulnayeem5265
@tohfatulnayeem5265 4 жыл бұрын
I'm getting the following exception: "io.cucumber.datatable.UndefinedDataTableTypeException: Can't convert DataTable to List. Please review these problems: - There was a table cell transformer for java.lang.String but the table was too wide to use it. Please reduce the table width to use this converter. - There was no table entry or table row transformer registered for java.lang.String. Please consider registering a table entry or row transformer. - There was no default table entry transformer registered to transform java.lang.String. Please consider registering a default table entry transformer"
@socialmedia434
@socialmedia434 4 жыл бұрын
Even i was getting the same error. @Naveen AutomationLabs. My error got resolved after i changed the code in Step Definition file . The error gets resolved after you change the List to just List. See below List users = dataTable.asList(); for (String u : users) { System.out.println(u); }
@tohfatulnayeem5265
@tohfatulnayeem5265 4 жыл бұрын
@@socialmedia434 Hi. Thanks for your comment. I also tried the following and it worked: List users = dataTable.cells();
@sharookhs2628
@sharookhs2628 3 жыл бұрын
@@tohfatulnayeem5265 Thanks for both of your comments. List userList = dataTable.cells(); for (List list : userList) { System.out.println(list); } OR List userList = dataTable.asList(); for (String list : userList) { System.out.println(list); }
@farzanaislam634
@farzanaislam634 3 жыл бұрын
@@sharookhs2628 Thank you so much @ 1st one make sense and data came exactly same format as feature
@parveenchauhan5132
@parveenchauhan5132 4 жыл бұрын
@chetanmali5575
@chetanmali5575 3 жыл бұрын
Hi @Naveen, Can you create a video for datatable.asLists() for custom class object rather than a String class.?
@ahmettemel8245
@ahmettemel8245 2 жыл бұрын
thank you
@tulasiramsunkara
@tulasiramsunkara 4 жыл бұрын
@Naveen: Just to add more points regarding DataTable 1. DataTable should be the last parameter in the stepdefinition method if we have other parameters in our step 2. We can read the DataTable in other format as well instead of List>. Can you cover these as well if possible
@naveenautomationlabs
@naveenautomationlabs 4 жыл бұрын
Yes, this is only part 1. More data table concepts will be covered in next video.
@user-gh2kr5kz1x
@user-gh2kr5kz1x 4 жыл бұрын
What is the difference between examples and data table.Two things looks similar. Please tell the differences.
@naveenautomationlabs
@naveenautomationlabs 4 жыл бұрын
wait for upcoming videos.
@tulasiramsunkara
@tulasiramsunkara 4 жыл бұрын
Examples are nothing but we are testing with multiple sets of data. Where as DataTables are used send one set of data and will read all the data once for a scenario. Depending on the number of examples your scenario will be executed that many times
@mayankagrawal1999
@mayankagrawal1999 3 жыл бұрын
How to call this data table method from another method
@ashrithachar5304
@ashrithachar5304 2 жыл бұрын
Thanks
#11 - DataTable (asMaps) in #Cucumber BDD (Part 2) - Latest 2020
9:47
Naveen AutomationLabs
Рет қаралды 42 М.
#8 - Hooks in #Cucumber (Before/After Hooks in Cucumber)
19:05
Naveen AutomationLabs
Рет қаралды 62 М.
REAL or FAKE? #beatbox #tiktok
01:03
BeatboxJCOP
Рет қаралды 18 МЛН
So Cute 🥰 who is better?
00:15
dednahype
Рет қаралды 19 МЛН
Selenium Cucumber Java BDD Framework 7 - Page Factory | Step by Step
33:01
Automation Step by Step
Рет қаралды 105 М.
Lecture9: DataTable in Cucumber BDD || Scenario Outline vs DataTable
10:45
PrinceAutomationDestination
Рет қаралды 2,3 М.
#4 - Cucumber Feature File mapping with Step Definition - Important Tips
16:21
Naveen AutomationLabs
Рет қаралды 117 М.
top 25 mostly asked Cucumber Interview Question and Answer |Cucumber BDD Framework FAQ's
13:25
REAL or FAKE? #beatbox #tiktok
01:03
BeatboxJCOP
Рет қаралды 18 МЛН