Automation Testing Interview For Experienced| Mphasis Interview Questions

Поділитися
Вставка
  • Опубліковано 17 лис 2024

КОМЕНТАРІ • 118

  • @rdautomationlearning609
    @rdautomationlearning609  2 роки тому +7

    ua-cam.com/play/PLTGn8a4YcF3wp7Jb7VKtkYLiIpvyL0pl7.html
    QA Success Stories

  • @Payalvloggs11
    @Payalvloggs11 2 роки тому +24

    The most humble and most patient interviewer i would say i have seen. And the best part is you give the answers and solutions right away which makes the video more interacting and useful.

  • @sushil_1529
    @sushil_1529 8 місяців тому

    I have seen many of your video and those are helpful.
    You make candidate more comfortable and easy to answer or express knowledge.

  • @poojajarugu4845
    @poojajarugu4845 2 роки тому +7

    The Feedback or comments which you gave to Ankitha is a really good booster to me as well ("Support yourself")👍

  • @bhupendraparihar6248
    @bhupendraparihar6248 4 місяці тому

    Sir Your videos are helping people a lot who want to make their career in software testing field,

  • @sahilsharma-jz3pj
    @sahilsharma-jz3pj Рік тому +4

    You are really a great man Rakesh !!
    Doing a great job to improving your community skills
    Thanks 🙏🙇

  • @ramneekvlogs9105
    @ramneekvlogs9105 2 роки тому +20

    Regarding 'new' keyword. It basically calls the constructor of that class and then it's constructor's job to create the instance and allocate memory to that object

    • @rdautomationlearning609
      @rdautomationlearning609  2 роки тому +1

      Wonderful answer Ramneek!

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

      @@rdautomationlearning609 new is a keyword is java which is used to create an object in heap area and assign one address to the object.

    • @Anish-A-Vector
      @Anish-A-Vector 10 місяців тому

      New keyword is used to allocate the memory.

  • @harshadkhairnar7362
    @harshadkhairnar7362 2 роки тому +3

    I think we can use parameters.
    Such as depends on and also we can give priority for that test case 2 as 0 and test case 1 as as 1 ==> so that we can achieve test 2 execute first and then test 1 execute

  • @puspanjalikhora9807
    @puspanjalikhora9807 Місяць тому

    Thank you so much its really useful i literally enjoyed all your mock interview video most humble and most patient interviewer, i wish your channel would grow and reach new milestone in the days to come ❤❤❤❤❤❤

  • @shyamvittal
    @shyamvittal 2 роки тому +9

    There are two scenarios
    If there are only two methods,
    a. we can use the dependsOn parameters
    b. also set priorities for the test cases

    • @shwetatalakalshetru7626
      @shwetatalakalshetru7626 7 місяців тому

      If we assign Priority to test cases according priority test case wil execute,if test2 failed than test1 must be skipped, it won't happen in priority

    • @shwetatalakalshetru7626
      @shwetatalakalshetru7626 7 місяців тому

      As he telling dependency

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

    We use for dependsOnMethods because testNG support dependency of one test method over other method,
    @Test(dependsOnMethods="Test2")
    Public void Test1(){
    System.out.println("Home page test");
    }
    @Test
    Public void Test2(){
    System.out.println("login test")
    }

  • @sunilkhanadale2468
    @sunilkhanadale2468 2 роки тому +8

    Test 1 (priority =2)
    Test 2 (priority =1)

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

    Using priority keyword
    Test 1 (priority =2)
    Test 2 (priority =1)

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

    we set the priority keyword means we set the first test case as a priority 1 and then second test case we set the priority 2

  • @n.nagarajunidumolu2090
    @n.nagarajunidumolu2090 10 місяців тому

    About test NG,
    We need to use the @parameter annotation and by using this annotation we can disable and enable the test cases. Disable =true,
    Disable=false.
    Or
    We can use the run option inside the class

  • @ALLROUNDER_-bh6vc
    @ALLROUNDER_-bh6vc 2 роки тому +1

    in test case 1,
    use dependsOnMethds=method name(of test case2)
    it means when test case2 execute then test case 1 will also execute.

  • @Pallavichaudhari88
    @Pallavichaudhari88 10 місяців тому

    We have to execute only particular test case the we can disable other test case by using keyword enable=false and other methods also there we can use xml file and in that file we can use include or exclude tag

  • @advice5640
    @advice5640 Рік тому +3

    We can handle three ways
    1.@AfterMethod annotations in Test1
    2. @BeforeMethod annotations in Test2
    3. @Test(dependsOnMethods={"Test1"}) in Test2

  • @varsharaut7247
    @varsharaut7247 9 місяців тому

    Test1,Test2-set the priority=0 is Test2 ,Test1is set priority=1

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

    Using 'dependsOnMethod' attribute within @Test annotation, we can specify the name of the parent test method on which the test should be dependent.

  • @bumore2870
    @bumore2870 2 роки тому +1

    Suggestions you gave are really helpful..... Thank u

  • @pujaguchait2903
    @pujaguchait2903 2 роки тому +3

    class stringNum {
    public static void main(String[] args)
    {
    String str = "test234";
    char ch[] = str.toCharArray();
    String dig = "";
    for(int i=0; i

  • @sowmyabg1620
    @sowmyabg1620 2 роки тому

    Can achieve 1.method changing
    2.@dependson assertion
    3. Priority of test case

  • @shyamvittal
    @shyamvittal 2 роки тому

    For the card payment scenario, two of the most important scenarios would be Payment Success and Payment Failure.

  • @Netapaul
    @Netapaul 2 роки тому +3

    You are great sir, learned a lot from you

  • @prakashgnan9830
    @prakashgnan9830 2 роки тому

    Syntax is not correct but using dependsonmethod we can execute test2 before test1 , second way is by giving priority for methods

  • @AbhishekSaykar-s9t
    @AbhishekSaykar-s9t 4 місяці тому

    we can use depend on and priority features

  • @vaishnavimatode7112
    @vaishnavimatode7112 2 роки тому

    We can use priority one for test1 and give priority test2.
    Or we can use before for test1 and after for test2

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

    Id and Name as a locator must be referred as the first choice in the case of most web apps.

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

    We use dependonmethod =test 2 keywords to test 1 then if test 2 will execute then test 1 will run otherwise it will skip not fail

  • @zindagizindabaad611
    @zindagizindabaad611 2 роки тому

    Because M2 method may have first priority that's why M2 method executed first instead of M1 method

  • @mahanteshmantu2067
    @mahanteshmantu2067 2 роки тому +1

    Sir actually we can use annotations like test1= we write @test (priority1)
    Then we get only test1

  • @Nehamore1909
    @Nehamore1909 4 місяці тому

    Great interview, sir. This required

  • @maheshzende5828
    @maheshzende5828 2 роки тому +2

    Sir Your are genius,.

  • @GaneshT-m4b
    @GaneshT-m4b Рік тому

    We can go for priority to execute test 2 1st

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

    I will give the priority's to test cases

  • @Maverism
    @Maverism 2 роки тому +1

    Thank you sir you are such a great motivator...

  • @heenakouser7733
    @heenakouser7733 2 роки тому +2

    Really helpful 😍, thanks both of u

  • @ranipatil8151
    @ranipatil8151 2 роки тому +2

    It really helps ...thank you so muchhhhhhhh 🥰

  • @sportsnews7286
    @sportsnews7286 2 роки тому +1

    Answer to the open question..
    @Test(dependsOnMethods="Test2")
    Public void Test1()
    {
    }

  • @SantoshSingh-ru5lm
    @SantoshSingh-ru5lm Рік тому

    wow sir what an interview, thanks

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

    We can use priority

  • @rajeshreddy7119
    @rajeshreddy7119 2 роки тому

    We can use priority concept

  • @commonman8370
    @commonman8370 2 роки тому

    Replace all we can use to remove sting and keep only integers.

  • @arunkumar-zk4uw
    @arunkumar-zk4uw 2 роки тому

    You can give like this,
    @Test1(dependsOnMethods="Test2"}.

  • @subhamd2405
    @subhamd2405 2 роки тому +2

    Could you please suggest how we can arrange the array code in Java
    Like int[] num ={0,1,0,1,1,0}
    Output like {1,1,1,0,0,0} how?

  • @GANESHPAWAR-fg2qo
    @GANESHPAWAR-fg2qo 9 місяців тому

    We will use dependson method parameter to excute second method

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

    By giving priority to the test method you can execute the test as you want

  • @poornimashetty7060
    @poornimashetty7060 2 роки тому

    Using priority or order attributes

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

    We have to use dependsOnMethod

  • @maheshbhaise9542
    @maheshbhaise9542 2 роки тому

    I would use to dependsonmethod=casename,
    Priority for case

  • @rahulkarmakar9144
    @rahulkarmakar9144 2 роки тому

    depends on method("method name")

  • @PoojaChavan-i9z
    @PoojaChavan-i9z Рік тому

    We can add these 2 test cases in one group.

  • @madhvipathak7077
    @madhvipathak7077 2 роки тому +2

    Good work ankita👍

  • @parulagarwal2860
    @parulagarwal2860 2 роки тому

    Hi, I want your advice I have 8 years of gap in my career. Earlier than that I had worked ad database developer where I extensively works on query writing. Now since 2 years I am learning automation testing. During First year I learnd automation testing using python and now I learned selenium with Java. I also try to learn BDD framework, GitHub, maven and basics of Jenkins like how to schedule a Jenkins job and the stages in jenkins. … so my question is like do companies consider women employees with 8 years of gap. Reason of my gap is I had moved to USA and had no working Visa. Right now I am in Canada. I am not getting any interview call. Please help

  • @e.devendragoudchinna3513
    @e.devendragoudchinna3513 2 роки тому

    Depends on method method name

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

    Sir pls confirm these questions asked by mpahsis company.

  • @parulagarwal5749
    @parulagarwal5749 2 роки тому +2

    I also want to give interview. Can you please take my interview

  • @mohammedsajeed1192
    @mohammedsajeed1192 2 роки тому

    By using Dependency annotation.

  • @Canada1989
    @Canada1989 2 роки тому

    Depends on method

  • @poojachandurkar7405
    @poojachandurkar7405 2 роки тому

    Depends on method =method name

  • @piyushrajani4354
    @piyushrajani4354 2 роки тому +1

    I want to give a mock interview
    Where I can share my resume?

  • @sabersayyed975
    @sabersayyed975 2 роки тому

    DependsOnMethods={"method name"}

  • @tejeshgowda4970
    @tejeshgowda4970 2 роки тому +1

    I want to give interview..
    How to give..

  • @Mee_123-z5j
    @Mee_123-z5j 2 роки тому

    Sir I want to join mock how is it possible

  • @priyankaOfficial301
    @priyankaOfficial301 2 роки тому

    Hello sir
    I have 4 year's of experience so please u can take my mock interview also

  • @archanagat9334
    @archanagat9334 2 роки тому

    Alwaysrun annotations to run second test

  • @Mee_123-z5j
    @Mee_123-z5j 2 роки тому

    We will declare dependOn annotation with priority

  • @NareshKumar-gl9fs
    @NareshKumar-gl9fs Рік тому

    Priority basis

  • @moviegarage2711
    @moviegarage2711 9 місяців тому

    Parallel execution

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

    DependsOnMethod

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

    @Test(priority = 1)

  • @byrasamudram
    @byrasamudram 2 роки тому

    Dependaonmethod in test annotation

  • @Dnyanu_zadePatil
    @Dnyanu_zadePatil 2 роки тому

    Test 1(enable=false)

  • @nagbhushanbhalerao4662
    @nagbhushanbhalerao4662 2 роки тому

    Could you please take my interview

  • @nikitakamble3842
    @nikitakamble3842 2 роки тому

    sir I also give the interview

  • @shwetatalakalshetru7626
    @shwetatalakalshetru7626 7 місяців тому

    @Test(dependsOnMethod=test2)
    Public void test1() {}

  • @kinjalchaudhari533
    @kinjalchaudhari533 2 роки тому

    Always be run

  • @sonaljadhav6004
    @sonaljadhav6004 2 роки тому

    Used hard asser

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

    package Program_testng;
    import org.testng.annotations.Test;
    public class sample {
    @Test(dependsOnMethods="test2")
    public void test1() {
    System.out.println("test1");
    }
    @Test
    public void test2() {
    System.out.println("test2");
    } }
    this will be better approach ?

  • @PriyaDharshini-bf1hq
    @PriyaDharshini-bf1hq 2 роки тому

    dependsOn

  • @swapniljagdale-n9v
    @swapniljagdale-n9v Рік тому

    @Test
    public void login() {
    System.out.println("Login");

    }

    @Test(dependsOnMethods = "login")
    public void searchUser() {
    System.out.println("Search User");
    }
    in this we can make one test depend over another test .Here if login method is get exicute then only the searchUser method will excute otherwise it will get fail

  • @Sarojini343
    @Sarojini343 2 роки тому +1

    Sir I too want to give mock interview please give email id to send the cv

  • @amar-lj5ms
    @amar-lj5ms Рік тому

    Sir can u share ur mail id

  • @GaneshT-m4b
    @GaneshT-m4b Рік тому

    We can go for priority to execute test 2 1st