MasterCard Testing Interview Experience | Real Time Interview Questions and Answers

Поділитися
Вставка
  • Опубліковано 4 вер 2024
  • MasterCard Automation Testing Interview Experience | Real Time Interview Questions and Answers
    This video contains Java interview questions, Selenium interview questions, TestNG interview questions and Database interview questions that were asked as part of Interview Process.
    #MasterCardInterview #MasterCardAutomation #RDAutomationLearning
    MasterCard Automation Testing Interview Experience | Real Time Interview Questions and Answers
    This video contains Java interview questions, Selenium interview questions, TestNG interview questions and Database interview questions, Rest API interview questions, Manual Testing interview questions that were asked as part of Fiserv Interview Process.
    What if I have 50 test cases and how do I execute all those test cases?
    What all Test Estimation Technique you know of? What Test estimation technique you applied in your project?
    In my browser, I face security certificate violation how do I avoid that using TestNg script? What kind of desired capability you would be using it to avoid it?
    How do you change your webdriver to run in remote machines?
    Explain Framework Implementation in your project
    What all the challenges you have faced in selenium
    Draw the architecture diagram of selenium implementation in your project
    Explain what SDLC model you are using in your project
    How can you check whether a particular text present on a webpage? What are the predefined method in selenium for checking this
    There are more than one ways to find it. We can use the getPageSource() method to fetch the full page source and then verify if the text exists there. This method returns content in the form of string.
    We can also check if some text exists with the help of findElements method with xpath locator. Then we shall use the text() function to create a customized xpath. The findElements() method returns a list of elements. We shall use the size() method to verify if list size is greater than 0.
    How to check whether the checkbox is selected or in unselected
    In order to check if a checkbox is checked or unchecked, we can used the isSelected() method over the checkbox element. The isSelected() method returns a boolean value of true if the checkbox is checked false otherwise.
    How to find whether the element is invisible or in hidden
    manual testing fresher questions
    What if the software is so buggy it can’t really be tested at all?
    If the software is so buggy, the first thing we need to do is to report the bugs and categories them based on Severity. If the bugs are critical bugs then it severely affects schedules and indicates deeper problems in the software development process. So you need to let the manager know about the bugs with proper documentation as evidence.
    what is static testing
    Static Testing involves reviewing the documents to identify the defects in the early stages of SDLC. In static testing, we do code reviews, walkthroughs, peer reviews, and static analysis of a source code by using tools like StyleCop, ESLint, etc.,
    What is Dynamic Testing?
    Dynamic testing involves the execution of code. It validates the output with the expected outcome.
    This Video is helpful for people who are looking for :
    MasterCard interview questions and answers
    MasterCard technical interview questions and answers
    MasterCard Telephonic Interview
    MasterCard online interview
    MasterCard java Interview Questions
    MasterCard interview questions
    MasterCard interview questions for freshers
    MasterCard interview india
    MasterCard interview experience
    MasterCard interview questions for experienced
    MasterCard interview questions for automation testing
    MasterCard automation testing interview questions
    MasterCard interview experience
    MasterCard interview questions and answers for freshers
    MasterCard interview questions geeksforgeeks
    MasterCard questions and answers
    MasterCard interview latest
    MasterCard testing interview questions
    MasterCard selenium automation testing interview questions
    MasterCard interview asked questions
    MasterCard interview call
    MasterCard qa automation interview questions
    MasterCard interview process quora
    MasterCard interview experience quora
    MasterCard mock interview
    MasterCard selenium interview questions
    MasterCard selenium interview questions for experienced

КОМЕНТАРІ • 29

  • @nellainayagam7540
    @nellainayagam7540 5 місяців тому

    The interviewer is looking so cool,calm& composure..Useful video Kudos

  • @mechanicalhouse2449
    @mechanicalhouse2449 Рік тому +7

    Driver.findElement (By.x-path ("//button [@id='csv-button']"));
    Or
    Id is there in the button
    So directly we go for
    Driver.findElement (By.id ("csw-button"));
    Or
    Driver.findElement(By.linktext ("CSV"));
    Sir if it is correct than give a comment

  • @sajidsaiyed8169
    @sajidsaiyed8169 Рік тому +1

    I don’t think so it’s issue . But logically it will select all elements with id=csv-button

  • @srujankumar8107
    @srujankumar8107 Рік тому

    After finding the xpath of the element we need to store it into Web Element and then we have to perform actions on that element.

  • @hemantsharma6873
    @hemantsharma6873 Рік тому

    I think , we should go with other identifier bcos ID has hyphen in between of csv-button

  • @kallepallirupesh2508
    @kallepallirupesh2508 Рік тому

    For element not found exception we can use explicit wait

  • @user-eb1su7ue4q
    @user-eb1su7ue4q Рік тому +2

    tag name should be passed .we must provide attribute value inside single quote(')
    //button[@id='csv-button']

  • @pavanib1870
    @pavanib1870 Рік тому

    Single qoutes at the start and end inside braces is causing issue,
    If we remove and run it will work I think

  • @rishig2509
    @rishig2509 Рік тому

    Sir,Please inform us if there are any interviews related to programming like java, c++, SQL etc

  • @vijay_madane03
    @vijay_madane03 Рік тому

    But now there is no opening for testing

  • @janakale7966
    @janakale7966 Рік тому

    I think we should go for waits

  • @indian3954
    @indian3954 Рік тому

    use contains method

  • @singh07neeraj
    @singh07neeraj Рік тому

    Is it inside frame

  • @kothapremchand8187
    @kothapremchand8187 Рік тому

    Bro you look like a money heist professor

  • @gomzi3171
    @gomzi3171 Рік тому

    Professor money heist

  • @harshalpatil4410
    @harshalpatil4410 Рік тому

    just remove //

  • @pratikshakadam7006
    @pratikshakadam7006 Рік тому

    It should be like “//*[@id=‘csv-button’]”
    This will be the way

  • @Shahin_Sayyed_Official
    @Shahin_Sayyed_Official Рік тому

    Anyone please send me in The chart Rakesh email I’d …. I need that ?

  • @shravanalex3142
    @shravanalex3142 Рік тому +2

    29:50 The question is wrong... When we have ID property of an element we don't need to go for Xpath...
    driver.findElement(by.Id.("csv-button").click();
    Correct me if am wrong..

  • @saivamshikotla6387
    @saivamshikotla6387 Рік тому

    If we found locators while inspect we should prefer first locator as 'id' and answer is:
    driver.findElement(By.id("csv-button")). click ();
    Or
    driver.findElement(By.xpath("//button[@id='csv-button']"). click ();

  • @shubham.0796
    @shubham.0796 Рік тому +1

    If its related to python then
    click_button = driver.find_element(By.Xpath,”//button[@id=‘csv-button’]”);
    If its java then
    click_button = driver.findElement(By.xpath(“//button[@id=‘csv-button’]”);
    I guess this was the solution for that. Correct me if i’m wrong.

    • @sajidsaiyed8169
      @sajidsaiyed8169 Рік тому

      Xpath is same for all languages. Catch point is * .

  • @massieayan346
    @massieayan346 Рік тому

    //taqName[@Attribute=‘value’]

  • @JAVA-94
    @JAVA-94 Рік тому +1

    driver.FindElement(By.Xpath("//button[@id='csv-button").click();

  • @aakashkangule4045
    @aakashkangule4045 Рік тому

    driver.findElement(by.Xpath(//"csv_button"))