How To Write Test Cases In Manual Testing With Example - Test Cases For Login Page | Test cases-fast

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

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

  • @QA1
    @QA1  4 года назад +7

    Software Testing Tutorials (full set): ruclips.net/p/PLc3SzDYhhiGWuMK03uYO-UENAx0s2woWM

  • @sophiax6937
    @sophiax6937 3 года назад +4

    I have always think writing test cases takes me a lot of time. You gave a more effective way to write them. It is really a sample, easy way to write and understand. Good job!!

  • @shahidjoyia7052
    @shahidjoyia7052 10 лет назад +1

    Hello Inder, I have finished my software tester course about a year ago. I am now in the market & I watched your videos. You are simply great. The way tou explain with all the details is so good. I have watched lot of videos on RUclips, but you are the best. Thank you for doing this for the people. Keep it up and best of luck.
    Shahid,VA

    • @QA1
      @QA1  10 лет назад

      Hello Shahid, I am very glad that you liked my videos. Appreciate your comment. Best regards, Inder.

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

    thanks for writing test cases in this manner. easily understable. thanks once again

  • @findjob123
    @findjob123 10 лет назад

    Really helpful how to write effective test cases in short time, need some more basic test case procedure for beginners

  • @shriramanprakash704
    @shriramanprakash704 9 лет назад

    @ 3:00 Why do you add logout in your step3 when you should have already logged out on step 1??Steps 2 and 3 are of negative input,which means that you would have not logged in when you give negative inputs??

    • @QA1
      @QA1  9 лет назад

      +Shriraman Prakash Test Case 1 is an example of an "ordinary" test case, with a number of problems. One of the problems is over-use of copy-paste. Now, instead of "Log out" in step 3, it should have had "If logged in to the application, then log out". In hurry, the tester may have just written "Log out". Also, we should not just remove "Log out" from step 3. Because it is possible that in step 2, due to a bug, the application logs in the user. Therefore, we should write the full text, ""If logged in to the application, then log out". Such problems are not present in the Test Case 2 (the "effective" test case). Thank you for your comment.

    • @shriramanprakash704
      @shriramanprakash704 9 лет назад

      +Software and Testing Training ok thanks for the explanation

    • @ramonsequoia8586
      @ramonsequoia8586 7 лет назад

      You can always use some clever wording, such as "Verify that user is logged out and...." That will cover all cases and makes it clear that the next action can only be done when logged out.
      I also found that using "Verify that..." as step description implies the action and describes the expected result. I rarely write anything into the expected results column as it would only be repetitive.

  • @MrGuccimayne
    @MrGuccimayne 10 лет назад

    Thank you so much, You can only read so much online. But to actually see it in action is very good!

    • @QA1
      @QA1  10 лет назад

      Thank you for your comment.

  • @AccessDenied9095
    @AccessDenied9095 10 лет назад

    very good for non IT learners. thanks

    • @QA1
      @QA1  10 лет назад

      Appreciate your comment. Thank you.

  • @kanchankrsingh
    @kanchankrsingh 10 лет назад

    You made testing really easy! short but very effective video

    • @QA1
      @QA1  10 лет назад

      Many thanks, Kanchan. Glad that you liked this video.

  • @RakeshYadav-gx5ud
    @RakeshYadav-gx5ud 10 лет назад

    awesome video sir please upload more videos regarding manual testing with new tricks

    • @QA1
      @QA1  10 лет назад

      Rakesh, thank you :)

  • @ramonsequoia8586
    @ramonsequoia8586 7 лет назад +1

    Good video that covers a lot of the basics. I strongly suggest to not use "should" when describing expected results. It is unclear wording as it suggests that it might be OK when the result does not occur. Further, be far more specific when it comes to inputs. As a tester, how do I know what constitutes a valid or invalid user name? I understand it is an example, but using such vague language in test cases leaves a lot up for interpretation. Test case 2 lacks detail as to which error message is to be expected.
    One good option for cutting down on test case creation time is writing generic test cases that need minimal editing for each test scenario. Keep those generic tests in a easily accessible library. Copying and pasting followed by some editing is not only fast and easy, but it also adds consistency to tests. Keep a reference in place so that finding all similar tests is easy in case all of them need to be changed.
    Some other things to consider and outside of what the video is about:
    Using a spreadsheet is simple means to document test cases, but it makes linking test cases to changesets, work items, and bug reports difficult. Use a test case management system instead.
    Also include any security related tests as test cases, at least SQL/HTML/JS injection.

    • @QA1
      @QA1  7 лет назад

      Hi Ramon, I agree that "should" can be replaced with a stronger word, like "must". And yes, we can either mention the test data (valid username and password pair) or refer the procedure to create this test data. But, I don't agree with copy and paste followed by editing because it sounds like a waste of time. Why not just document only the ~differences~ from the generic test?
      What do you think about adding other tests like performance tests or accessibility tests?

    • @ramonsequoia8586
      @ramonsequoia8586 7 лет назад +1

      I use Microsoft Test Manager as tool and cloning a test case takes a second and moving it to the desired spot another second. The items needing editing are clearly marked and replacing them takes a few seconds per test. It will take more time to document the differences in a way that anyone within the team or from the outside (we often get help from other departments) can run the test with ease. When executing the tests we do not want the tester to spend time on thinking about what the test steps are. Their focus needs to be on testing what is in the test case and what happens left and right from the designated path. Using a test case library cut down on test case creation time a lot. In many cases I copy tests from other test suites where I know I do not have to edit anything. Copy and paste is always faster and more consistent than reinventing the wheel.
      A clear yes on performance tests. We run tests using at least twice the amount of records that we know the largest system includes, but stop there. There is little point in spending a lot of time optimizing for performance using a number of records users will never encounter. In case we were wrong we can still make adjustments. Performance tests also include single record performance.
      Accessibility tests is a vague term. We do UX tests as in "How many clicks does it need to do X?" during exploratory testing. As far as accessibility for screen readers and such we have tests using the Nu validator.

    • @QA1
      @QA1  7 лет назад

      Thank you. Even if it takes a couple of seconds, I don't like copying and pasting the tests. If the original changes, then who knows how many test cases (and where) have to be updated?
      There is more clarity on Accessibility testing these days. For example, there are Web Content Accessibility Guidelines. aria-controls MUST be present in the web elements.

    • @ramonsequoia8586
      @ramonsequoia8586 7 лет назад

      That is where test case management systems come in. The test cases are referenced back to the source test case and updating all of them requires writing a simple query (takes a minute) and then replicating any changes in each of the copies. This never takes more than a few hours even for often reused cases. We do have several tests that are indeed generic and get simply added to test suites. Changing those is even easier, change the source and all instances of the test case are changed at the same time. Anything other than copy and paste will take more time, be much harder to maintain, and lack consistency.
      Can't really do that well with spreadsheets. Using Excel or Calc is the last resort when the budget is 0. Even then, there are several free test case management tools available.

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

      @@ramonsequoia8586 Hello! Can you tell me what are those free test case management tools? Thank you!

  • @radhikamogadampally9217
    @radhikamogadampally9217 5 лет назад +2

    This is a very different test case I have seen so far...very nice 👌

  • @janekhovailo7922
    @janekhovailo7922 6 лет назад +4

    Thank you very much.You’re a genius.

  • @skghtufir
    @skghtufir 10 лет назад

    I will shortly be starting my software testing course and I found your video to be very useful and would like to know more about SRS document for testing.

    • @QA1
      @QA1  10 лет назад

      I have explained the different requirements formats in my video, How to review Software Requirements at ruclips.net/video/Vz7TQ3eAQiU/видео.html
      In the video, you can see the URL for a sample SRS document. Thank you.

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

    Thank you sir. Awesome video. I am gonna implement those thing

  • @AbhilashRuhela
    @AbhilashRuhela 9 лет назад +1

    Amazing! Though I have done testing course, I found this video a wonderful lesson.. kudos to the teacher..

  • @parigulagha1005
    @parigulagha1005 9 лет назад +1

    Really effective video easy to understand and easy to learn. Thnx forgiving better idea for writing test cases

  • @gulelva1847
    @gulelva1847 9 лет назад +1

    great tutorial well explained and what an engaging voice. Well done Inder.

    • @QA1
      @QA1  9 лет назад

      gulelva1 Thank you for your support. Best regards, Inder

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

    Very understandable, Thanks.

  • @meerambimohammed7048
    @meerambimohammed7048 9 лет назад

    Its very helpful those who r fresher's to learning testcase

    • @QA1
      @QA1  9 лет назад

      meerambi palagiri Thanks, Meerambi.

  • @vemularama555
    @vemularama555 10 лет назад

    first time am learning course so ...nice explanation ...singh

    • @QA1
      @QA1  10 лет назад

      Thank you :)

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

    Wow this, thank you very much to this video. Writing test cases was really a hustle.

  • @geethak6427
    @geethak6427 10 лет назад

    Hii, sir i never seen before like this much clear and usefull video for beginners thank u so much sir

    • @QA1
      @QA1  10 лет назад

      Thank you. Please also view the videos in this channel's playlist, Manual Testing Tutorials for a systematic collection of testing videos for beginners.

  • @DineshMaske20
    @DineshMaske20 10 лет назад

    thanks..... nice and simple to understand.

    • @QA1
      @QA1  10 лет назад

      Dinesh, thank you :)

  • @riddhu203
    @riddhu203 10 лет назад

    very good and useful for begineers

    • @QA1
      @QA1  10 лет назад

      Thank you for your comment.

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

    Thank you for the clear examples! And I think about of the place where we give valid and invalid values of inputs. Can we add Test data column before Steps one?
    Do you have more videos with test cases examples?

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

      @Nataliia Nataliia - You are very welcome to ask any queries! Sure, a separate column to put Test data is more readable than writing the test data within the Steps. I do have more videos with test cases examples:
      1) How to Test Software Manually (test cases of a web application) - ruclips.net/video/kJwpIS9apuY/видео.html
      Test Automation cases explained in ruclips.net/video/mZ1Sy5JuFwI/видео.html
      2) Test Cases in Manual Testing - ruclips.net/video/mjB9XTpQmgc/видео.html
      3) Use Case Testing - ruclips.net/video/H95RX5zFLcA/видео.html
      I think that you have already viewed the use case but I have explained the test cases in that video from 9:32
      Thank you.

  • @SkyPegasus1
    @SkyPegasus1 10 лет назад

    Excellent. Very SIMPLE, easy to understand with A LOT of information. Thank you for posting this. I will check your other ones

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

    it helps a lot.
    thank you so much for sharing...

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

      @Pyae Pyae Moe Aung - thank you for your comment. View the full playlist at ruclips.net/p/PLc3SzDYhhiGWuMK03uYO-UENAx0s2woWM

  • @sirishap5042
    @sirishap5042 10 лет назад

    Thanks a lot.. Its very clear explanation video for beginners... Keep posting like this Videos sir...

    • @QA1
      @QA1  10 лет назад

      Sirisha, you are very welcome. Check out our playlist, Manual Testing Tutorials. It has many useful videos for beginners.

  • @kwemishuza73
    @kwemishuza73 10 лет назад +7

    here is another on of your good effort. Great JOB Man!!

    • @QA1
      @QA1  10 лет назад +1

      Mhilu, many thanks for your support. Inder.

  • @rambabuu1
    @rambabuu1 9 лет назад

    Simple and effective steps..... Thank you Sir

    • @QA1
      @QA1  9 лет назад +2

      rambabuu1 Glad to help. Thank you for your comment.

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

    Thank you so much! This helped me ^^

  • @PayalSharma-gq3gt
    @PayalSharma-gq3gt 11 лет назад

    Hi,
    Mr. Singh, very good video. I really like it. I am a newbie in testing and I am slowly learning testing from online. Please upload some QA Manual Testing Videos for newbies. thanks

    • @QA1
      @QA1  11 лет назад

      Thank you, Payal. There are many videos in my playlist, Manual Testing. I will upload a number of more videos so please subscribe to know about the same. Thanks again.

  • @johnstephen7198
    @johnstephen7198 11 лет назад

    A very good video of how to design a test case. will all organizations accept test cases like this... i do understand its the best possible way to design a test case.. but some organizations want to follow a detail oriented approach...they want more text...... you have used login functionality to explain the test cases..what abt more complex test scenarios? can we use this approach...

    • @QA1
      @QA1  11 лет назад

      John,
      Yes, it is a valid point that some organizations want detailed test cases. The main take from this video is to minimize the text as much as possible.
      Same for more complex testing scenarios. We can make the use of tables, make test cases modular and refer to other documents and test cases.
      Thank you for your comment.

    • @johnstephen7198
      @johnstephen7198 11 лет назад

      Thank for your reply, much appreciated. Im a fresher in testing . I have few doubts and ill list my questions. can you please help me out.
      1. first day qa tester life in an organization. what is expected from me?
      2. what kind of meeting i will attend, will someone provide a high level overview of the project or i shd understand from the Requirment doucment.
      3. what is triage calls?
      4. other than excel,outlook,qc what are the most common tools used for manual testing that a new tester shd be aware of?
      5. other tips from you to make sure a new hire is confident in what he is doing.
      waiting for your reply.A presentation can be very useful not only to me but for others as well.... Thanks for sharing your knowledge light to others, once i learn ill definitely help others.

    • @QA1
      @QA1  11 лет назад

      john stephen
      Here are my responses:
      1. The initial days of QA tester typically focus on knowing the organization, the products/ services and team and settling down.
      Refer the link for an effective knowledge transfer to you.
      inderpsingh.blogspot.in/2010/02/what-is-best-way-to-get-knowledge.html
      2. It depends. Commonly, its both. However, the expectation is that you will put in the best effort from your side to understand the project and ask questions to get clarity.
      3. A triage meeting has representatives from various teams or departments like development, testing, support and others as needed. The defects are discussed and further actions are decided. You should prepare for the meeting beforehand by analyzing your latest test results.
      4. Any tool that you use in your day to day work e.g. project management software, pdf reader, calculator or any tool suitable for the task at hand.
      5. View the videos in my playlist, Manual Testing. I will upload more videos too.
      Thanks for your interest. Best wishes, John.

  • @TheBindutube
    @TheBindutube 10 лет назад

    Very good training...Thank You for your effort in making a good tutorial video.

    • @QA1
      @QA1  10 лет назад

      Bindu Patel Many thanks for your support and comment.

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

      Didi aap testing me job krti ho

  • @kumarkosgi3799
    @kumarkosgi3799 10 лет назад

    Wonderful singh... it helps in real time.. thank you also please tell us more about how to write test cases for web application like airline ticketing......

    • @QA1
      @QA1  10 лет назад

      Thank you for your suggestion. This topic is on my to-do list. Inder.

  • @jyothirmayi1746
    @jyothirmayi1746 9 лет назад

    easy to understand good one thank u

    • @QA1
      @QA1  9 лет назад

      Jyothi Rmayi Hi Jyothi, many thanks for your support.

  • @sandeepsohal1543
    @sandeepsohal1543 6 лет назад

    great video!! anyone can fall in love with testing after watching this .. At least, I am.
    Could you please guide me how to prepare questions on Manual testing Interview questions. I am always stuck in the interview on manual testing questions (i was asked that how will you write test cases for mobile, what do you do in non-functional testing, what will be my approach to test (as a junior tester), what will you do before starting testing? ) I was asked these questions in last 3 interviews. i think my concepts of manual testing are very poor. please help me.i read your videos on Test plan and test strategy but its for the Team lead.

    • @QA1
      @QA1  6 лет назад

      Hi Sandy, many thanks for your comments. Regarding the interview questions:
      1) for How to write test cases for anything, please view my tutorial on Test Ideas at the link, ruclips.net/video/juHNzoRNlIQ/видео.html
      2) for what do you do in non-functional testing like performance testing, see first 40 minutes of my JMeter tutorial at the link, ruclips.net/video/4mfFSrxpl0Y/видео.html
      3) for approach to test (and many other things), see my video on Software Tester job role at the link, ruclips.net/video/l537tPkhdNI/видео.html
      Please let me know if I missed anything.

  • @ritu7180
    @ritu7180 10 лет назад

    Very nice tutorials specially the combination part you told

    • @QA1
      @QA1  10 лет назад

      ritika ritu Thank you. You may like my video on Decision Tables in which I have explained the combinations in multiple examples. The link is ruclips.net/video/ED2iJXkdhCQ/видео.html

  • @grch171
    @grch171 10 лет назад

    Nice, v cover all probabilities with little effort.

  • @anithareddy4015
    @anithareddy4015 10 лет назад

    Thanku for explaining clearly...............

    • @QA1
      @QA1  10 лет назад

      You are welcome to view the other videos in my Selenium Tutorials, Test Automation, Manual Testing Tutorials, VBScript and HTML tutorials playlists.

  • @taslimabegum9548
    @taslimabegum9548 11 лет назад

    REALLY HELPFUL, Thanks a lot

    • @QA1
      @QA1  11 лет назад

      Taslima, many thanks. Please let me know your needed topic so that I can consider uploading videos on those.

  • @mitthanshbatchu1843
    @mitthanshbatchu1843 6 лет назад

    Very inspiring video
    Can we expect more videos from u related

    • @QA1
      @QA1  6 лет назад

      Many thanks, Mitthansh. Yes, I will upload more related videos but please view my playlist of 37 video tutorials at the link, ruclips.net/p/PLc3SzDYhhiGWuMK03uYO-UENAx0s2woWM

  • @sahilkakkar7550
    @sahilkakkar7550 9 лет назад

    easy to understand sir ....thank you

    • @QA1
      @QA1  9 лет назад

      Sahil Kakkar Thank you too.

  • @nawaabsaab777
    @nawaabsaab777 8 лет назад +1

    i like this short cut..great job!!!!1

  • @o0593m
    @o0593m 10 лет назад

    Thank you. Very good video :simple and efficient.

    • @QA1
      @QA1  10 лет назад

      You are welcome, Privet :) Appreciate your comment.

  • @aartigandhale8139
    @aartigandhale8139 8 лет назад +1

    this is really good video. Very easy to understand.

  • @badass262
    @badass262 9 лет назад

    Great video viewed from Botswana. liked, and will also join the linkedin group... gr8.

    • @QA1
      @QA1  9 лет назад

      Stroke Hope that you like the other videos too in my playlist, Manual Testing Tutorials. Thank you for your support.

  • @swollen4ever
    @swollen4ever 10 лет назад

    Thank you.. Im new to testing..

    • @QA1
      @QA1  10 лет назад

      swollen4ever You are welcome. Please find the complete list of my basic software testing tutorials at ruclips.net/p/PLc3SzDYhhiGWuMK03uYO-UENAx0s2woWM

  • @mikesaclolo1440
    @mikesaclolo1440 6 лет назад

    Hi! Very nice tutorial. In your example you only have two parameters username and password. How about if the parameters are more than 3? Like registration page. How can i do this?

    • @QA1
      @QA1  6 лет назад

      Hi Mike, thank you for your question. Let us assume 4 parameters on a registration page - username, email, password and captcha. You could then list the test conditions with B (blank), I (invalid), V(valid) as:
      1) B,B,B,B
      2) B,B,B,I
      3) B,B,B,V
      4) B,B,I,B
      5) B,B,I,I
      6) B,B,I,V
      and so on.

  • @AliBaba-kk2qz
    @AliBaba-kk2qz 3 года назад +1

    Thank you brother for sharing your learning skills ᥬ🤗᭄

  • @yogeshwarim92
    @yogeshwarim92 11 лет назад

    Hello sir, ur explanation is clear and understandable.. Help me out by sharing videos about testing with the help of metamorphic relations..

    • @QA1
      @QA1  11 лет назад

      Yogeshwari, thank you for your comment.
      IMO, MR (metamorphic relation) is used in testing when you do not know the exact expected result. But you could execute two related test cases with a previously known relation between their expected results.
      For example, let us say that you search for the term "software testing" and get some search results, say Set 1. It would then make sense that if you searched for the term "testing", it is a super-term for the previous term, so you should get each item in Set 1 in your search results.
      Another example, let us say that you take the nth root of a number X in your SUT as Y. If you cannot verify Y's correctness by any other means, you can still raise Y to the power n and be able to get X (or close). If not, there may be a defect in the SUT.

    • @yogeshwarim92
      @yogeshwarim92 11 лет назад

      Software and Testing Training Thank you so much sir.. if possible upload some videos related to this concept, that will help me a lot..

  • @bhushankhare4504
    @bhushankhare4504 9 лет назад +2

    very good... a have learnt a lot

  • @johannajaniszewski2790
    @johannajaniszewski2790 9 лет назад +3

    Thank you very much! This is also very helpful for a Game Designer like me! :)

  • @norad1090
    @norad1090 9 лет назад +1

    Hi,
    Thank you for this great video, Is there difference between writing test case for different type of testing (ex: system testing or unit testing)? or we use the same test cases

    • @QA1
      @QA1  9 лет назад

      Nora D Thank you for your question. I assume that you are referring to the test case formats for unit testing or system testing. These formats may be the same or different depending on the needs of the project, team or organization.

  • @satishs6681
    @satishs6681 10 лет назад

    really very clear info , but i need total manual testing training video CD's , Is it possible to get those?

    • @QA1
      @QA1  10 лет назад

      Please see all the videos in my playlist, Manual Testing Tutorials at ruclips.net/p/PLc3SzDYhhiGWuMK03uYO-UENAx0s2woWM

    • @satishs6681
      @satishs6681 10 лет назад

      really very nice

    • @QA1
      @QA1  10 лет назад

      satish s
      Thank you. I have sent you more information.

  • @carlosmorzan
    @carlosmorzan 10 лет назад

    Hi Inder, I would like to know if the steps in the Test Case can be considered the scenarios or the process flows of a Use Case. Thank you.

    • @QA1
      @QA1  10 лет назад

      Hi Carlos - Yes, though the Use Cases are inputs to writing Test Cases. Further, the Test Cases (usually) have test data which is not present in the Use Cases.
      In other words, the steps of a Test Case are more than the scenarios or process flows of the corresponding Use Case(s).
      Thank you for your question.

  • @user-yb7fd2nf8x
    @user-yb7fd2nf8x 2 года назад

    Hi
    Thanks for your teachings
    One request the user is not able to set the video quality. It says the video quality is unavailable

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

      Hi @Sandhya T - I thank you for your support. This video should be available at 720p video quality. I will check it.

  • @lidiaabraham
    @lidiaabraham 10 лет назад

    very useful and refreshing clear example. Thank you. Do you have videos on automation testing and or NFT?

    • @QA1
      @QA1  10 лет назад

      lidiaabraham Many thanks for your comment. Yes, I do have several test automation videos at ruclips.net/p/PLc3SzDYhhiGXVcy8EcrTSfwsC-v8EUZvg

  • @mayurRanpura
    @mayurRanpura 11 лет назад

    Thanks.. Good video with clear explanation..!

    • @QA1
      @QA1  11 лет назад

      Mayur, thank you for your comment.
      The link to subscribe to this channel is ruclips.net/user/SoftwareTestingSpace

  • @charithagunerathne9384
    @charithagunerathne9384 10 лет назад

    It really helpful and good work.....

    • @QA1
      @QA1  10 лет назад

      Charitha, thank you.

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

    thank you for sharing that with us ! it is very helpful (Y)

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

    I have a question. IN THE ATM if your test scenario is to verify that the user is present with options when card is inserted from proper side ..WHAT i can writ as a test cas or teststeps

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

      @ghania dz - I have written the test cases for ATM in my Use Case Testing video at the link, ruclips.net/video/H95RX5zFLcA/видео.html
      Please subscribe to Software and Testing Training RUclips channel.

  • @yahanranasinghe304
    @yahanranasinghe304 10 лет назад

    Great Video's. By the way do you have anything for UAT & SIT ? Much appreciated!!!!

    • @QA1
      @QA1  10 лет назад

      Thank you :)
      Yes, please see the video on System Testing at ruclips.net/video/3lOjtmsA2Kk/видео.html

    • @yahanranasinghe304
      @yahanranasinghe304 10 лет назад

      Thank you again!!!!!!!

  • @slowsloth8550
    @slowsloth8550 7 лет назад

    You sir,
    are amazing.
    thank you very much for the clear practical teaching.

    • @QA1
      @QA1  7 лет назад +1

      Dikole, glad that you liked it.
      Best wishes,
      Inder

  • @norad1090
    @norad1090 9 лет назад

    Hi,
    Thanks for your replay. Not only the format, either the content should it be different based on the testing type ,or the test cases should be the same for all types. and based on that ,during the testing preparation the team should create test cases based on the planed test type.

    • @QA1
      @QA1  9 лет назад

      Nora D Hi there. Of course, the content will be different for test cases for different levels, unit testing, integration testing, system testing and acceptance testing. For example, in unit test cases, you may want to test particular methods. In integration test cases, you may want to test the interactions between unit-tested components. And so on.

  • @kavyakalavoor6357
    @kavyakalavoor6357 9 лет назад

    Dear sir, i learned lot of things by this video and also i would like to know the test cases examples for some other functions except login page or enter homepage.

    • @QA1
      @QA1  9 лет назад

      kavya kalavoor Sure, you can see other test case examples in my video titled "What is test case" from 17 minutes and 30 seconds. The URL of this video is ruclips.net/video/mjB9XTpQmgc/видео.html

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

      Didi aap testing me job krti ho

  • @RahulR2990
    @RahulR2990 10 лет назад

    Thank You Inder.Can you just upload a video on how to write a test case for a website.

  • @prem655
    @prem655 8 лет назад

    yes...bt my que. is this specific format like case name precondition obj. test data..etc

    • @QA1
      @QA1  8 лет назад +1

      +Jaydeep Lagad This is the simple test case format. Pre-conditions and test data are not included in this format. Here the assumption is that the tester knows the URL, he can design/ source the needed test data etc.

  • @andrewarreza3211
    @andrewarreza3211 10 лет назад

    Thanks! Very informative

    • @QA1
      @QA1  10 лет назад

      Andrew, thanks a lot.

  • @surnar1
    @surnar1 11 лет назад

    Thanks for uploading this video, it is really helpful for beginners

    • @QA1
      @QA1  11 лет назад

      Thank you, Suresh. The concept is "don't repeat yourself" and it is applicable elsewhere such as in programming and documentation.

  • @santhoshk5157
    @santhoshk5157 6 лет назад

    Hi sir..one request can you plz make a video on test cases other than login functionalities.. like booking a ticket in online booking apps, add to cart like flipkart ecommerce sites-- because I see many videos only on login functionality.. so please make a video on other functionalities too.. it will be really helpful.
    Thank you in advance..

    • @QA1
      @QA1  6 лет назад

      Hi Santhosh, you can see other examples in my basic Test Case tutorial at the link, ruclips.net/video/mjB9XTpQmgc/видео.html

  • @vignesh1720
    @vignesh1720 10 лет назад

    really good work and helps us a lot....

    • @QA1
      @QA1  10 лет назад

      Many thanks for sharing your comment.

  • @RakeshAI0226
    @RakeshAI0226 9 лет назад

    Thank you. Very helpful.

    • @QA1
      @QA1  9 лет назад

      Rakesh AI Rakesh, many thanks for your comment.

  • @chinnipsrao8641
    @chinnipsrao8641 8 лет назад

    Hi sir, for writing test cases mainly using which type of techniques.like BVA and ECP.

    • @QA1
      @QA1  8 лет назад

      Yes, Boundary Value Analysis, Equivalence Partitioning and more techniques are used to design test cases. You can understand these techniques from my test design videos at ruclips.net/p/PLc3SzDYhhiGWW0TzISFKqAN_ic8DnZvVc

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

    Excellent sir .

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

    This is so interesting... Thanks for useful information

  • @dinunarisetti
    @dinunarisetti 11 лет назад

    thank you very much it will useful a lot

  • @hermwilli
    @hermwilli 10 лет назад

    This is the best video I have come across, Well defined and explained. Well done sir, great work! Hugs!! Do you have videos of manual testing using java? Regards

    • @QA1
      @QA1  10 лет назад

      Hi Hayley, there are many manual testing videos in our playlist called Manual Testing. It is available at ruclips.net/p/PLc3SzDYhhiGWADEQx4GIITh_O8jyVWu_l
      The concepts of testing covered in these videos are the same for different types of applications. Like Java applications, websites, desktop applications and so on. I hope that I understood your question correctly. Thanks for your comment.

  • @amitchib2322
    @amitchib2322 10 лет назад

    Good work Inder!!!

    • @QA1
      @QA1  10 лет назад

      Amit - thank you very much.

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

    Super cool, thanks

  • @KM-yr7xd
    @KM-yr7xd 6 лет назад

    I just have started learning testing, so my question is : different companies have different fields of work. How can I be aware of how to work with some kind of field? Firstly I'm given some documents about what is company are working with - like this? Because testing is using in many ways...

    • @QA1
      @QA1  6 лет назад

      Hi Mariia, thanks for your subscription and your question. Yes, the documents about the company business are a good starting point. You should also know about your specific business vertical and the programs running in it. Lastly, you should have good domain knowledge. See my video on tips to get domain knowledge quickly at the link, ruclips.net/video/uay8vYtLxAU/видео.html
      You may also find my video on tips to work in the software testing at the link, ruclips.net/video/16nR8atu-T8/видео.html

  • @Raouf4eva
    @Raouf4eva 8 лет назад

    Hello sir, I have a question... I was wondering as a tester do you have to locate the issue when testing? By that I mean say if there is a requirement and let's say this requirement involves the backend database and when you test it you have 500 data fields being added and you found 480 do you have to locate all the missing data ?? Or is that the job of the developer who is querying. If you can please assist me with this question. Hopefully I wrote it to the point it's not confusing. Thank you! So much..

    • @QA1
      @QA1  8 лет назад

      Yes, of course. Testing is an analysis. The bug report should contain the complete information.

  • @ravindermadadi2143
    @ravindermadadi2143 10 лет назад

    Thanks for the valuable information..If you can explain for different other functions ( other than login functionality ) it will be much more useful

    • @QA1
      @QA1  10 лет назад

      Thank you for your comment. Here are a couple of my video where I have shown how to test other functionality:
      - How to test a web app at ruclips.net/video/kJwpIS9apuY/видео.html
      - How to test reports at ruclips.net/video/0HN6Gh7ym6w/видео.html
      Hope you like these :)

  • @mohamedlathif8533
    @mohamedlathif8533 10 лет назад

    Thank you sir...its very usefull one...

    • @QA1
      @QA1  10 лет назад

      You are welcome :)

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

    Excellent Sir 🙏

  • @shahsamir7608
    @shahsamir7608 8 лет назад

    Its easy understandable .Thanks

  • @norad1090
    @norad1090 9 лет назад

    Hi
    Thank you again for your useful information,from your point of view what is the topics /outline for new tester (fresher) groining Agile testing department.Thanks in advance.

    • @QA1
      @QA1  9 лет назад

      Nora D Thank you for your question. If I understood it correctly, the new tester should be familiar with the industry domain, the clients, the existing system, the team and the project/ test management system, the agile process and the environments in which the system runs.

  • @aartigandhale8139
    @aartigandhale8139 8 лет назад +4

    I have biology background but i want to change my field to QA. Can you please give me a guidance? Where can I post my questions?

    • @QA1
      @QA1  8 лет назад +4

      You can learn software testing basics from my Manual Testing Tutorials playlist. It has 27 public videos. The link is ruclips.net/p/PLc3SzDYhhiGWuMK03uYO-UENAx0s2woWM

    • @QA1
      @QA1  8 лет назад +3

      You are welcome to post your questions in the respective video as comments. Once you have viewed the Manual Testing Tutorials, you can learn test automation basics from my Test Automation playlist. The link is ruclips.net/p/PLc3SzDYhhiGXVcy8EcrTSfwsC-v8EUZvg

    • @marutisakuntalaparavastu6479
      @marutisakuntalaparavastu6479 8 лет назад

      Software and Testing Training

    • @jasjeetsingh1605
      @jasjeetsingh1605 8 лет назад

      Software and Testing Training

    • @roshminewar8610
      @roshminewar8610 8 лет назад

      tnx

  • @gulshankumarjha802
    @gulshankumarjha802 9 лет назад

    very good approach

  • @sanjayvaish807
    @sanjayvaish807 10 лет назад

    nice video sir. can u please explain loan life cycle in terms of testing ..this the interview question ask by interviewr

  • @sahithikolisetti5575
    @sahithikolisetti5575 9 лет назад

    hi, sir thank you very much for providing these videos, it help's a lot to me.
    Is this quick to write test cases can we write in real -time applications???

    • @QA1
      @QA1  9 лет назад

      +Sahithi Kolisetti Yes, if there is consensus among the stakeholders for the same. And there is no requirement that mandates another test case format.

  • @minionsland
    @minionsland 10 лет назад

    wonderful Inder Singh.

    • @QA1
      @QA1  10 лет назад

      Many thanks, Adam. Appreciate your comment :)

  • @minathisabat1062
    @minathisabat1062 9 лет назад

    Great Video!!! Do you have videos for QTP also, if so pls share it

  • @Android-rr9kz
    @Android-rr9kz 6 лет назад

    Sir please help me.. i want a write a test case for multiple textbox, radiobutton, Checkbox, etc.. how can i write the a single testcase mentioning all the data for above components..
    I had learned about pairwise testing but it doesnt cover the invalid values.. please help on this.

    • @QA1
      @QA1  6 лет назад

      You can use the technique that I have explained in this tutorial. You need to list the possible combinations of user inputs. For example, let us say there are 2 textboxes (T1 and T2), 2 radio buttons (R1 and R2) and 1 checkbox (C). Each textbox may get a valid value (V), invalid value (I) or a blank value (B). Only 1 radio button may be selected. C may be checked or unchecked. So, you can list 2 textboxes' 8 values (as shown in this video) times 2 values for R1 or R2 times 2 values for C.

  • @gmarupa
    @gmarupa 10 лет назад

    Hi sir, could you please suggest me any link where I can learn the basics of software testing(manual) and especially I want tips on how to write test cases....

    • @QA1
      @QA1  10 лет назад +1

      Sankar, for software testing basics, please see the videos in this channel's playlist, Manual Testing Tutorials. There is another playlist that covers even more topics. It is titled Manual Testing.

    • @gmarupa
      @gmarupa 10 лет назад

      thank u sir

  • @tarudesai9404
    @tarudesai9404 10 лет назад

    Thank you so much sir.. if possible upload some videos related to this concept, that will help me a lot.. I am very week to write test case please help me.or If you can recommend any test case book so i can improve my writing test case skill.

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

    Thank you Sir

  • @ssri1675
    @ssri1675 6 лет назад

    May i know where can i get whole QA training videos of ur channel

    • @QA1
      @QA1  6 лет назад

      Hi Sri, you can view all 37 no.s QA training videos at the link, ruclips.net/video/T1a6LUXHZmg/видео.html

  • @muntasirabdullah7414
    @muntasirabdullah7414 9 лет назад +1

    very clear to understand..