Selenium Cucumber Java BDD Framework 6 - Page Object Model | Step by Step

Поделиться
HTML-код
  • Опубликовано: 18 сен 2024

Комментарии • 184

  • @chicku975
    @chicku975 2 года назад +9

    I had doubt regarding the logic behind the driver initialization in POM. I watched several Udemy videos from different Gurus but it did not get cleared. But after 1 year, I stumbled upon this video and my doubt got resolved within seconds after watching this video. Cannot believe how easily and detailed he explained the concept. Thanks a lot Raghav. Your contents are great.
    Keep doing what you do and keep helping the needy souls like us.

    • @RaghavPal
      @RaghavPal  2 года назад

      So happy & humbled to see your message Shachindra

  • @IfNotMe
    @IfNotMe 2 года назад +1

    I learned more here than anywhere else...Thank you for your efforts

    • @RaghavPal
      @RaghavPal  2 года назад

      So nice of you Shakeel, humbled

  • @rishashanth1560
    @rishashanth1560 3 года назад +3

    Thank You so much for the detailed lectures. I would say this is one of the best tutorials and you made it accessible to everyone. Thanks!

    • @RaghavPal
      @RaghavPal  3 года назад

      You're very welcome Risha

  • @jorge4932
    @jorge4932 4 месяца назад

    Your page and courses are brutal !! Congratulations Raghav!!
    Thank you very much to share with us all of your knowledge!!

    • @RaghavPal
      @RaghavPal  4 месяца назад

      Glad you like them Jorge

  • @mayankjain9941
    @mayankjain9941 4 года назад +1

    Nicely explained Page Object Model, Easy to understand. Thanks, Raghav!!

    • @RaghavPal
      @RaghavPal  4 года назад +1

      You're welcome Mayank

  • @786Muhaimin
    @786Muhaimin 4 года назад +2

    Another great video! Looking forward to the next one!

  • @Mushsayer
    @Mushsayer 2 года назад +1

    Awesome training videos!

  • @syedasif4207
    @syedasif4207 Год назад

    Hi raghav...all the video tutorials are very clear to understand and follow. May God bless you bro.

  • @mani123ish
    @mani123ish 2 года назад

    You have explained every concept in details .Really appreciate your efforts.

    • @RaghavPal
      @RaghavPal  2 года назад

      Most welcome Mandeep

  • @keshavKumar-le4df
    @keshavKumar-le4df Год назад

    One of the best video to learn automation.

  • @revansiddappapanchal2068
    @revansiddappapanchal2068 2 года назад

    you are genius sir, your teaching was excellence

    • @RaghavPal
      @RaghavPal  2 года назад

      Thanks Revan, humbled

  • @anishgupta7234
    @anishgupta7234 Год назад

    Superb way to explain , i really liked the way he teaches miltiple things in one go with smoothness

  • @mohammadtajuddin7115
    @mohammadtajuddin7115 3 года назад

    Your way of explanation is simply superb👍☺️💐💐💐💐💐💐💐💐💐

  • @ruthmariahangelinprakash2359
    @ruthmariahangelinprakash2359 2 года назад +1

    Thank you for the series of the videos on Selenium, cucmber, bdd. These video are very helpful and useful materials in learning the automation. I have couple of doubts. 1. If we need to run from the TestRunner class, do we need to include another glue code for the mapping of step definition with page file. 2. And could you please host few videos on database automation (DB testing). Thank you once again!

    • @RaghavPal
      @RaghavPal  2 года назад

      Hi, the same glue code should work, I will add videos on db automation testing

    • @ruthmariahangelinprakash2359
      @ruthmariahangelinprakash2359 2 года назад

      @@RaghavPal Thank you very much on the reply, just a small query if the page file is in another folder then do we need to include another line for the glue code. And awaiting for the DB automation videos. Thank you once again.

  • @NRNov16
    @NRNov16 2 года назад +2

    Why we are creating constructor ?
    Can you briefly explain the use case of constructor here Sir?

    • @RaghavPal
      @RaghavPal  2 года назад +1

      Hi Vipin, sure, Constructor is a function in a class having the same name as class and it is always called whenever the class is instantiated or an object is created for the class.
      Even if you do not explicitly create a constructor function, a default constructor is always present and is called,
      We make use of this feature to force user to send some input parameters when creating objects for a class by creating parameterized constructors

    • @NRNov16
      @NRNov16 2 года назад

      @@RaghavPal Thanks sir

  • @sumithra576
    @sumithra576 3 года назад +1

    Hello Raghav,
    I really liked the way how you organized the content and explained the concepts in lay man terms so any enthusiast can understand. Kudos to you on that. I was searching for the BDD framework content and came across your video playlist and I am glued to the content.
    When we run a feature file how did it know which java file to execute? We did not mention the dependency or sort of link any where. I see you some times comment the similar ones so the cucumber does not get confused which one to pick. Say for example all the .java are very different ones. then you cannot always comment the code and execute in a project right? So how do we handle such cases?

    • @RaghavPal
      @RaghavPal  3 года назад

      Hi Sumithra, glad to know you are enjoying this series. In general, we an provide the location of the glue code in Cucumber Runner class as you must have seen in the videos, It checks for the matching step definition with the steps of feature file and runs those functions.

  • @sadizeggane4792
    @sadizeggane4792 3 года назад

    BIG BIG BIG BIG BIG BIG BIG Thanks to you mister Raghav :) !!!

  • @saxenahimanshu6584
    @saxenahimanshu6584 10 месяцев назад

    Best relation explained for driver and this.driver page and steps classess

    • @RaghavPal
      @RaghavPal  10 месяцев назад

      Thanks for the comment Himanshu

  • @manikantan2457
    @manikantan2457 4 года назад +1

    Very Nice ! Sirji

  • @susmithakotla3431
    @susmithakotla3431 2 года назад

    Thanks a lot for making this concept very easier.

    • @RaghavPal
      @RaghavPal  2 года назад

      Most welcome Susmitha

  • @sendmereferral5916
    @sendmereferral5916 3 года назад +1

    HI Raghav, In current video you explain the concept with 1 step and page file.
    Could you please explain the concept where we have more than 1 pages and steps, so that we have shared driver and objects.
    Like: LoginPage, Home Page and customer add page etc.
    So how we are going to have shared driver and objects.
    Please explain this concept.

    • @RaghavPal
      @RaghavPal  3 года назад

      I will add on that

    • @sendmereferral5916
      @sendmereferral5916 3 года назад

      @@RaghavPal Thanks.. Please do give me video link.. will be waiting for the same.

  • @phindilehlungwana
    @phindilehlungwana 4 года назад

    Thank you so much for all the demonstrations

    • @RaghavPal
      @RaghavPal  4 года назад +1

      You are so welcome Phindile

  • @suchishah8332
    @suchishah8332 2 года назад

    Again awesome and useful explanation .Thank you so much.

  • @rahuldubey9013
    @rahuldubey9013 3 года назад

    Really appreciate the effort. You make it easy.

  • @NeelamGupta-nh3rh
    @NeelamGupta-nh3rh Год назад

    Thanks for sharing this concept

  • @emirgundem6154
    @emirgundem6154 2 года назад

    Thank you so much raghav

  • @raajijeeru1972
    @raajijeeru1972 3 года назад

    Such a wonderful explanation and Great work Sir. Always love your explanations.

    • @RaghavPal
      @RaghavPal  3 года назад

      Glad to hear that Raaji

  • @alejandrodiazo6526
    @alejandrodiazo6526 Год назад

    ¡Gracias!

    • @RaghavPal
      @RaghavPal  Год назад

      muchas gracias por el soporte

  • @adityachoudhary2101
    @adityachoudhary2101 3 года назад

    Thank you so much Raghav, this video helps a lot to develop UI framework using Java oops concept...Thanks a lot

  • @srikanthbolisetty1417
    @srikanthbolisetty1417 4 года назад

    Thanks for the session, easy to understand!

    • @RaghavPal
      @RaghavPal  4 года назад

      Most welcome Srikanth

  • @shridharpp
    @shridharpp 4 года назад +1

    Hi Raghav, please consider making a detailed tutorial on GEB, Spock, Groovy as well.

    • @RaghavPal
      @RaghavPal  4 года назад +1

      Sure I will Shridhar

  • @dheerajsingh6568
    @dheerajsingh6568 4 года назад +1

    Great vidoe Raghav.... One thing I want to know is why you are running feature file only ?? Why not test runner file sir ??

    • @RaghavPal
      @RaghavPal  4 года назад +2

      Hi Dheeraj, in the first video I have shown about TestRunner file. After all setup and test creation is done, we finally will be using test runner file. Here I am just focussing on POM concept. I will show all other ways of execution, once all features are done

  • @virulekkihal5537
    @virulekkihal5537 Год назад

    Super 👍

  • @navikasspecials3112
    @navikasspecials3112 3 года назад

    Hello Raghav, i like your videos, they are simple and very understandable. and i have gone through your website... there are lot of videos. i request if you add the course in document format that helps us more a lot.

    • @RaghavPal
      @RaghavPal  3 года назад

      Sure Mounika, thanks for watching

  • @aasraful
    @aasraful 2 года назад

    Thanks a lot

    • @RaghavPal
      @RaghavPal  2 года назад +1

      Most welcome Asraful

  • @akshayturkar4004
    @akshayturkar4004 Год назад

    Thanks a lot Sir... you are great

  • @thomasjohn3955
    @thomasjohn3955 3 года назад

    Thank You. Very useful video

    • @RaghavPal
      @RaghavPal  3 года назад

      You are welcome Thomas

  • @manishkannamoney7455
    @manishkannamoney7455 Год назад

    Excellent explanation sir! But u didn't mention about required depenencies in last class. So, Please could suggest dependencies are needed to add for POM? Thanks in Advance sir

    • @RaghavPal
      @RaghavPal  11 месяцев назад

      I will check and add Manish

    • @manishkannamoney7455
      @manishkannamoney7455 11 месяцев назад

      @@RaghavPal I required Support. Please can u give?

    • @RaghavPal
      @RaghavPal  11 месяцев назад

      Please let me know

  • @hassellvinny
    @hassellvinny Год назад

    Great explanation of the POM Raghav, thank you! Can I please ask, how do you do the cursor drag highlighting at 3:43? That looks like a really useful tool for presentations.

    • @RaghavPal
      @RaghavPal  Год назад +1

      Vinny
      you can use annotation tools based on your OS

  • @hardikkidschannelmspb8304
    @hardikkidschannelmspb8304 4 года назад

    Very explainatory!!👍

    • @RaghavPal
      @RaghavPal  4 года назад

      Glad it was helpful Hardik

  • @tanveersyed1049
    @tanveersyed1049 4 года назад

    Raghav nice video ...Very clear concept ....Pls make video on cucumber interview questions

  • @mohdjaveedali7336
    @mohdjaveedali7336 4 года назад

    Very useful session

    • @RaghavPal
      @RaghavPal  4 года назад +1

      Thanks for liking Javeed

  • @trytobesmart8840
    @trytobesmart8840 4 года назад

    Very nicely explained.can you plz make video how to read data from excel write excel in cucumber using datatables

  • @saleemeee1
    @saleemeee1 2 года назад

    Hi Rahul, may i know how are you getting the rectangle red box to highlight the text or field or a button when you drag the cursor on them.

    • @RaghavPal
      @RaghavPal  2 года назад

      its screen annotation Saleem

  • @amitbhardwaj7824
    @amitbhardwaj7824 3 года назад

    nice video keep uploading

    • @RaghavPal
      @RaghavPal  3 года назад

      Thank you, I will Amit

  • @roquetony
    @roquetony 2 года назад

    Hi Raghav! Your videos are wonderful! Thank you so much for sharing your Knowledge with Selenium Cucumber Java BDD. Is there by any chance you can also share how to set an automated screenshot with executed time and date as filename? Again, thanks a lot!

    • @RaghavPal
      @RaghavPal  2 года назад +1

      I will check and plan for it Tony, thanks for watching

  • @deepakhire4970
    @deepakhire4970 11 месяцев назад

    Please make a video on page object model with playwright in BDD framework

    • @RaghavPal
      @RaghavPal  11 месяцев назад

      I will plan Deepak

  • @konarkism
    @konarkism 4 года назад

    Hi Raghav, I must say you explain very well.. just small question - how will a feature file know that which step definition file it has to execute/refer?

    • @RaghavPal
      @RaghavPal  4 года назад

      Hi Konark, it will check the folder you have given as glue code and will take up the function with matching annotations in any of the scripts present in that folder

    • @konarkism
      @konarkism 3 года назад

      @@RaghavPal yeah, exactly, so I may have multiple step definitions classes present in that folder and classes may have same annotation such as given when and then for many methods, how will it know which particular method of a particular step definition class it has to pick?
      Is there regular expression playing a key role?

  • @warlordsquerk5338
    @warlordsquerk5338 3 года назад

    Thank you for the video :)

  • @ankitshrivastava1772
    @ankitshrivastava1772 3 года назад +1

    Hello Raghav, in the StepDef and Feature folders we have multiple Feature & stepDef file but when you when you do right click and select the run as cucumber feature then it execute the same stepDef file i mean hoe it binds the Feature file + step Def file.

    • @RaghavPal
      @RaghavPal  3 года назад

      Hi Ankit, it basically binds with the statements in given, when, then keywords and finds the corresponding func in any of the step def files. You can also add to check a specific file in the Cucumber Runner

  • @chinmaysatapathy489
    @chinmaysatapathy489 4 года назад +1

    Can you please use tesng in this framework ?

    • @RaghavPal
      @RaghavPal  4 года назад

      I will have a session on that Chinmay

  • @sivasakthiganesh1469
    @sivasakthiganesh1469 4 года назад

    Thanks great

  • @ParagOak
    @ParagOak 4 года назад +1

    Can we create any generic RestAssured framework which will be used any project like selenium projects.
    If yes, can you please guide us on this.

    • @RaghavPal
      @RaghavPal  4 года назад +1

      Hi Parag, you can, RestAssured is a java library that you can add and use in any java project

  • @mehmetakifgunder8499
    @mehmetakifgunder8499 2 года назад

    Hi Raghav. thank you very much. is the "pom" the best model in the testing field. in the example in this video, you used the functions and locators on the same page, but it is more advantageous to use the functions in common in the bdd system. how true is that? but now we use the common function and keep all the locators in a separate field. if there is a link to the latest example in this field, can you share it?

    • @RaghavPal
      @RaghavPal  2 года назад

      Hi Mehmet, POM design says to separate the objects & actions from the test scripts. So we need to keep our objects and methods separately in a diff class and we can create one class per page of the applications, Now in that class it depends if we also need to separate all object locators at the top OR keep all locators in a separate file and refer from there
      If we have lots of objects and we do not want to give access of class to everyone in QA team, then having a separate file for object locators is good option

  • @shankarmedhi8074
    @shankarmedhi8074 3 года назад

    so nice

  • @sweetthirty2
    @sweetthirty2 2 года назад

    Hii please make a video on BDD/cucumber folder-package structure

    • @RaghavPal
      @RaghavPal  2 года назад

      Sure, I will plan Samir

  • @tapaskhandai
    @tapaskhandai Год назад

    Hi Raghav, why we used login = new LoginPage(driver); in enter username and password method but not in click method below that?

    • @RaghavPal
      @RaghavPal  Год назад +1

      this is to call the LoginPage class and send the driver parameter to its constructor and refer it with login, once this is done, now you can use login object to access LoginPage functions and properties

  • @archananair3819
    @archananair3819 3 года назад

    Hi Sir, I have a doubt.. Why you created a separate void method in login class page at the bottom? Is that necessary? Why it is used?

    • @RaghavPal
      @RaghavPal  3 года назад

      Where exactly Archana? can point the time in the video. In case it is empty can avoid it

  • @julikumari1970
    @julikumari1970 3 месяца назад

    what's the difference between 'Page factory' and 'By txt_username=By.is(.....);' in identifying the element.

    • @RaghavPal
      @RaghavPal  3 месяца назад +1

      Juli
      Let's explore the difference between Page Object Model (POM) and Page Factory in Selenium for identifying web elements:
      1. Page Object Model (POM):
      - Design Pattern: POM creates an object repository for storing web elements.
      - Class Structure: Each web page is represented as a separate class file.
      - Advantages:
      - Easy Maintenance: When UI elements change, POM helps identify the specific page or screen to modify.
      - Code Reusability: Test code for one screen can be reused in other test cases.
      - Readability and Reliability: Independent Java files for each screen allow efficient code changes.
      - Implementation:
      - Define a separate Java class for each page/screen.
      - Include UI elements and operations specific to that page.
      - Use these classes to perform actions on the website under test.
      2. Page Factory:
      - Class Provided by Selenium WebDriver: Page Factory supports Page Object Design patterns.
      - @FindBy Annotation: Instead of using `FindElement` or `FindElements`, Page Factory uses the `@FindBy` annotation.
      - Implementation:
      - Annotate web elements using `@FindBy`.
      - Initialize web elements using the `initElements` method.
      - Descriptive annotations make it easier to locate and declare web elements.
      In summary, POM focuses on organizing web elements into separate classes, while Page Factory simplifies element initialization using annotations. Both approaches enhance test case maintenance and readability. Choose the one that best suits your project needs
      --

  • @shreedeevi2800
    @shreedeevi2800 2 года назад

    Can you make a video on how to create a baseclass in cucumber framework (( like driver initiation and maximize windows etc))))and use in multiple step definitions

    • @RaghavPal
      @RaghavPal  2 года назад +1

      I will do Shree

    • @shreedeevi2800
      @shreedeevi2800 2 года назад

      @@RaghavPal please make it as soon as possible sir I'll be waiting
      Thank you🙏

    • @roopaar4726
      @roopaar4726 2 года назад +1

      @Automation Step by Step Please is there any video on this....You explain very well and useful..please can you share if its there....and also one thing is as i have seen in cucumber for each scenarion....it will login and logout....(before and After hook) can you please make a video where it has 2 scenarios and multiple step definition files and one base class where driver is instantiated and passed to different steps of multiple scenarios

  • @ratishnair4523
    @ratishnair4523 9 месяцев назад

    Sir, In above video, data driven testing using excel is not shown, do you have video of data driven using excel ?

    • @RaghavPal
      @RaghavPal  9 месяцев назад

      I will check and plan on this Ratish

    • @ratishnair4523
      @ratishnair4523 9 месяцев назад

      @@RaghavPal, thanks for reply sir

  • @MaryNouri
    @MaryNouri Год назад

    Hi, i watched your video and that was so great. but i have a problem when i run login demo test project. can you help me and guid me?

    • @RaghavPal
      @RaghavPal  Год назад

      Hi Mary,
      will need more details on the issue you are facing and steps you have done

  • @abhilash6200
    @abhilash6200 Год назад

    Hi Sir, thanks for the video it really helps... I am using cucumber >6.8.1 junit 4.13.0 and springboot... When executed my tests are not running... Tests 0...if I downgrade the version it works... Could you please help me

    • @RaghavPal
      @RaghavPal  Год назад

      Hi Abhilash, not sure if there are some changes in the new version, will need to check online

  • @08is014
    @08is014 3 года назад

    Hi Raghav,
    Have one confusion. Logout button is part of Home Page but it's declared in Login Page class.

    • @RaghavPal
      @RaghavPal  3 года назад

      Ok, that may be a mistake, Pls correct at your end

  • @sendmereferral5916
    @sendmereferral5916 3 года назад

    HI.. I am looking for Selenium POM framework from scratch but without page factory.. Can you please guide me over the same. Thanks

    • @RaghavPal
      @RaghavPal  3 года назад

      Hi, you can just skip the POM sessions, the concepts will be the same

  • @navikasspecials3112
    @navikasspecials3112 3 года назад

    Hello Raghav, why you used " BY" class instead of webelement?

    • @RaghavPal
      @RaghavPal  3 года назад

      Hi Mounika, you can use BY class directly as shown

  • @imsaurabh73
    @imsaurabh73 2 года назад

    Hi Raghav one question if we have more than one step defn file how can we maintain same session?

    • @RaghavPal
      @RaghavPal  2 года назад

      Hi Saurabh, I did not get your exact requirements, what and why you want to have multiple step definition files, for test data you can use files or data table

  • @praveenl4162
    @praveenl4162 2 месяца назад

    Hi getting error compound classes not permitted please help (PAge object model)

    • @RaghavPal
      @RaghavPal  2 месяца назад

      Praveen
      Let's break down the problem step by step:
      Step 1: Understand the error message
      The error message "compound classes not permitted" typically occurs when Cucumber encounters multiple classes with the same name in the same package. This is not allowed in Java, as it can lead to ambiguity and conflicts.
      Step 2: Check your Page Object classes
      Review your Page Object classes and ensure that you don't have multiple classes with the same name in the same package. For example, if you have a `LoginPage.java` class, make sure you don't have another class with the same name in the same package.
      Step 3: Check for duplicate classes in your project
      Search your entire project for duplicate classes with the same name. You can use your IDE's search functionality or run a command like `find. -type f -name "*.java"` (on Linux/macOS) or `dir /s /b *.java` (on Windows) to search for Java files with the same name.
      Step 4: Check your step definition classes
      Verify that your step definition classes (e.g., `LoginSteps.java`) are not duplicating any Page Object class names.
      Step 5: Check your glue code
      If you're using a glue code file (e.g., `GlueCode.java`) to bind your step definitions to your Page Object classes, ensure that you're not accidentally creating duplicate classes or methods.
      Step 6: Review your Cucumber configuration
      Check your `cucumber.properties` or `cucumber.yml` file (depending on your Cucumber version) to ensure that you haven't accidentally configured Cucumber to scan multiple packages with duplicate class names.
      Step 7: Clean and rebuild your project
      Try cleaning and rebuilding your project to ensure that there are no stale class files or compilation issues.
      Step 8: Verify your Java and Cucumber versions
      Make sure you're using compatible versions of Java and Cucumber. You can check the Cucumber documentation for compatible versions.
      -

  • @villagetechstop3920
    @villagetechstop3920 3 года назад

    Question: Since we already have implicitlyWait timeout then why pageLoadTimeout ??

    • @RaghavPal
      @RaghavPal  3 года назад

      Hi Sathish, implicitlyWait will work after the page is completely loaded. Mostly having one of these is sufficient but its okay to have both in case required

  • @vijayakrishna5274
    @vijayakrishna5274 3 года назад

    Hi Raghav, I am not able to pass the integer while reading the data file(Examples) in cucumber file ,
    It shows me an error ,
    @When("user enter vij@gmail.com and {int}")
    public void user_enter_vij_gmail.com_and(Integer int1) {
    // Write code here that turns the phrase above into concrete actions
    throw new io.cucumber.java.PendingException();
    }
    @When("user enter test@gmail.com and abc@{int}")
    public void user_enter_test_gmail.com_and_abc(Integer int1) {
    // Write code here that turns the phrase above into concrete actions
    throw new io.cucumber.java.PendingException();
    }
    what is the error here ,

    • @RaghavPal
      @RaghavPal  3 года назад

      What is the error thrown Vijaya

  • @kumarsahil2706
    @kumarsahil2706 2 года назад

    Can u check in the console it is showing like
    2 scenarios (2 failed)
    10 steps ( 2 failed, 8 passed)
    Why it is showing like 2 failed???

    • @RaghavPal
      @RaghavPal  2 года назад

      Hi Sahil, will need to check your tests and logs

  • @ss60329
    @ss60329 2 года назад

    loved the video. easy and to the point. im just facing one issue. I'm implementing the same code but instead of entering the correct login credentials its just entering username and password as it is taking from the heading of the feature file!! CONFUSED

    • @RaghavPal
      @RaghavPal  2 года назад

      Hi, check the feature file and test data again,

    • @ss60329
      @ss60329 2 года назад

      @@RaghavPal Thanks works now

  • @shivkumardubey1890
    @shivkumardubey1890 4 года назад

    Raghav I have one doubt after running the test what I'm observing in your video as well in my laptop 2 scenario 2 failed...what does that mean??

    • @RaghavPal
      @RaghavPal  4 года назад

      Hi Shiv, there must be some error or failure. I will check again

    • @shivkumardubey1890
      @shivkumardubey1890 4 года назад +1

      @@RaghavPal yes please Raghav because i have doubt like our scenario is covering what we want to acheive but in pass/ fail result it is showing fail.

  • @kevingelling9935
    @kevingelling9935 4 года назад

    Raghav, thanks for the great tutorials so far. I have a question, how to create another test with invalid credentials next to the existing valid login? It seems I can't create this new test because I get a duplicate warning with the same stepdefinitions.

    • @RaghavPal
      @RaghavPal  4 года назад +1

      Hi Kevin, The best way will be to have the invalid credentials in data table and use the same test and you can also provide tags to select with data set to use. I will plan to add a video

  • @nandakamrutha
    @nandakamrutha 7 месяцев назад

    Where is hooks class in project structure?

    • @RaghavPal
      @RaghavPal  7 месяцев назад +1

      The location of your hooks class in a Selenium Cucumber Java project can vary depending on your project structure and preferences. However, there are some common practices you can follow:
      General locations:
      1. `src/test/java/hooks` package: This is a common convention where you have a dedicated package for all your hooks classes. Each file in this package can represent a specific type of hook (e.g., `BeforeAfterHooks.java`, `ScenarioHooks.java`).
      2. `src/test/java/step_definitions` package: Some projects place hooks alongside step definition classes for convenience. While functional, it can mix concerns if all hooks are within the same package.
      3. Project root: In smaller projects, hooks might be placed directly in the project root directory for quick access. However, this is not recommended for larger or more complex projects due to potential organization issues.
      Tips for choosing the right location:
      * Consider your project size and complexity: For larger projects, a dedicated `hooks` package promotes better organization.
      * Maintain consistency: Follow the existing structure in your project if already defined.
      * Clarity and maintainability: Choose a location that makes sense for your team and keeps your codebase clean and easy to navigate.
      Additional notes:
      * The hooks class itself is just a regular Java class with methods annotated with Cucumber hooks annotations like `@Before`, `@After`, `@BeforeStep`, etc.
      * The method names within the hooks class don't have specific requirements, but choose descriptive names that reflect their purpose (e.g., `setUpDriver`, `tearDownDriver`, `takeScreenshotOnFailedStep`).

  • @lauragraham2264
    @lauragraham2264 3 года назад

    The POM tutorials in Java Selenium worked well, but this one -- it kept inputting the username and password together in the username input slot, even though I had accurate By declarations for both username and password, which worked in the non-POM java. Strange....

    • @RaghavPal
      @RaghavPal  3 года назад

      Hi Laura, pls check the object locators you have used in script. I doubt they both are pointing to one object. If required add some wait time in between

  • @mohammadtajuddin7115
    @mohammadtajuddin7115 3 года назад

    Dont display the words on screen which u r speaking .....It so annoying and covering the imp content shown on screen🙄

    • @RaghavPal
      @RaghavPal  3 года назад

      Okay, I will take care of this

  • @yasaswinic5169
    @yasaswinic5169 Год назад

    I am getting null pointer exception i.e java.lang.nullpointerexception cannot invoke org.openqa.selenium.webdrivet.findelement
    Webelement iel = this.driver.findelement(locator);
    This.driver is null
    Pleas help me

    • @RaghavPal
      @RaghavPal  Год назад +1

      Hi Yasaswini, check the complete code and compare with video, I believe you missed or made some error in declaring driver. Can check my code here - github.com/Raghav-Pal/SeleniumCucumberBDD

  • @sandeshdaju1012
    @sandeshdaju1012 Год назад

    java.lang.NullPointerException: Cannot invoke "org.openqa.selenium.WebDriver.findElement(org.openqa.selenium.By)" because "this.driver" is null
    at pages.loginPage.enterusername(loginPage.java:26) i got this error. How to solve it

    • @RaghavPal
      @RaghavPal  Год назад

      Hi Sandesh,
      There are a few possible reasons for this error:
      The WebDriver object is not being instantiated in the code. Make sure that the WebDriver object is being instantiated and that it's being done before the findElement method is called
      The WebDriver object is not being properly passed through the code. Make sure that the WebDriver object is being passed correctly to the class where the findElement method is being called
      The WebDriver object is being instantiated in the wrong scope, for example, the object is being instantiated inside a method, but the findElement method is being called from outside of that method
      The web driver binary is not properly added to the project, please check if the web driver binary is added to the project and it's path is correctly referred in the code
      The compatibility between the version of Selenium, Cucumber and Java is not proper, please check if they are compatible with each other

    • @sandeshdaju1012
      @sandeshdaju1012 Год назад

      @@RaghavPal Thank you.

  • @archanashanmugavel5335
    @archanashanmugavel5335 Год назад

    Hi, I followed your video thank you very much !!
    But i'm getting the following error , can you help me to sort it out?
    java.lang.NullPointerException: Cannot invoke "org.openqa.selenium.WebDriver.findElement(org.openqa.selenium.By)" because "this.driver" is null
    at pages.LoginPage.clickonLoginButton(LoginPage.java:26)
    at StepDefinitions.LoginSteps.user_enters_user_name_and_password(LoginSteps.java:42)
    at ✽.User enters UserName and Password(file:///D:/CuCumberAutomation/CucumberJavaNew/src/test/resources/Features/login.feature:5)

    • @RaghavPal
      @RaghavPal  Год назад

      Hi Archana
      The error message `java.lang.NullPointerException: Cannot invoke "org.openqa.selenium.WebDriver.findElement(org.openqa.selenium.By)" because "this.driver" is null` means that the `driver` variable is null. This can happen if the `WebDriver` object has not been initialized yet.
      To fix this error, you need to initialize the `WebDriver` object before you try to use it. You can do this by creating a new `WebDriver` object in your `@BeforeClass` method.
      Here is an example of how to initialize the `WebDriver` object in your `@BeforeClass` method:
      ```
      @BeforeClass
      public static void setUp() {
      System.setProperty("webdriver.chrome.driver", "/path/to/chromedriver");
      driver = new ChromeDriver();
      }
      ```
      Once you have initialized the `WebDriver` object, you can use it in your `@Test` methods.
      Here is an example of how to use the `WebDriver` object in your `@Test` method:
      ```
      @Test
      public void testLogin() {
      driver.get("www.example.com");
      LoginPage loginPage = new LoginPage(driver);
      loginPage.enterUserName("username");
      loginPage.enterPassword("password");
      loginPage.clickLoginButton();
      }
      ```
      If you are still getting this error after you have initialized the `WebDriver` object, then there may be another problem with your code. You can try to debug your code to find the problem.