Thanks, Naveen, for the best in each part of Automation
@lokeshlulla3101Ай бұрын
Thanks @Naveen a good refresher
@Biswajit1154 жыл бұрын
awesome.. has been waiting for it.. watching during a client call :D
@naveenautomationlabs4 жыл бұрын
Haha 😂
@user-yb2fc1ur6g4 жыл бұрын
Learning new concepts ..thq🙏
@harishkce1989 Жыл бұрын
can datatable and examples be used in same feature file ..technically ??
@sonalsarpane36014 жыл бұрын
Nice series Naveen. Please cover the concepts like running particular scenario using testNG.xml and state sharing concepts.
@JitendraKumar-lr3vq4 жыл бұрын
it will be awesome to learn serenity ,extent report with cucumber..
@abinashbehera24093 жыл бұрын
Nice, Please share more concepts and Videos, Specially on the Extent reporting part. Running Cucumber with TestNG. Parallel test capabilities.
@shailweb074 жыл бұрын
Very good .. Keep it UP..
@naveenautomationlabs4 жыл бұрын
Thank you so much 😀
@SarangHoley4 жыл бұрын
Thanks for the video 👍😊
@yashuy32792 жыл бұрын
Thank you sir 🙂
@jayshreebraley3204 жыл бұрын
can we use Examples keyword with dataTable or both are different concept?
@lakshmiy41034 жыл бұрын
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 Жыл бұрын
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.
@ramadheer3 жыл бұрын
@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.
@Sehkarskr4 жыл бұрын
Hi naveen Please upload a video to create Extent report in cucumber with screenshot for failure scenarios.
@ishataahitan1493 жыл бұрын
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?
@kranthijangampet23382 жыл бұрын
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.
@reenep913 жыл бұрын
Hi Naveen can we access the data that defined in examples through datatable?
@surbhisaxena17293 жыл бұрын
I am also stuck on this.can someone please explain
@user-gh2kr5kz1x4 жыл бұрын
Pls explain about jhenkins for CICD and customized reports in cucumber.
@tohfatulnayeem52654 жыл бұрын
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"
@socialmedia4344 жыл бұрын
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); }
@tohfatulnayeem52654 жыл бұрын
@@socialmedia434 Hi. Thanks for your comment. I also tried the following and it worked: List users = dataTable.cells();
@sharookhs26283 жыл бұрын
@@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); }
@farzanaislam6343 жыл бұрын
@@sharookhs2628 Thank you so much @ 1st one make sense and data came exactly same format as feature
@parveenchauhan51324 жыл бұрын
✨
@chetanmali55753 жыл бұрын
Hi @Naveen, Can you create a video for datatable.asLists() for custom class object rather than a String class.?
@ahmettemel82452 жыл бұрын
thank you
@tulasiramsunkara4 жыл бұрын
@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
@naveenautomationlabs4 жыл бұрын
Yes, this is only part 1. More data table concepts will be covered in next video.
@user-gh2kr5kz1x4 жыл бұрын
What is the difference between examples and data table.Two things looks similar. Please tell the differences.
@naveenautomationlabs4 жыл бұрын
wait for upcoming videos.
@tulasiramsunkara4 жыл бұрын
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
@mayankagrawal19993 жыл бұрын
How to call this data table method from another method