Monday, 16 June 2014

Creating New Defect, TestCase Run, Attaching Files, Add Execution Steps

The following snippets describes how to create new Defect, Attachments, Adding Run., Adding Steps

       /*
        * Example For Creating a new Defect and Attaching a File
        */
       public static void createDefect() throws ALMServiceException {
              ALMServiceWrapper wrapper = new ALMServiceWrapper(
                           "http://localhost:8081/qcbin");
              wrapper.connect("admin", "admin", "DEFAULT", "SampleProject");
              IDefect defect = wrapper.newDefect();
              defect.isReproducible(true);
              defect.setAssignedTo("admin");
              defect.setDetectedBy("admin");
              defect.setDescription("My Defect Description");
              defect.setDetectionDate("12/1/2013");
              defect.setPriority(DefectPriority.HIGH);
              defect.setSeverity(DefectSeverity.MEDIUM);
              defect.setStatus(DefectStatus.OPEN);
              defect.setSummary("My Defect/Bug Summary");
              System.out.println(defect.getDefectID());
              wrapper.newAttachment("D:\\Data.xlsx", "My Attachment Description",
                           defect);
              defect.save();
              wrapper.close();

       }




       /*
        * Example For Creating an Attachment for a TestSet
        */
       public static void createAttachmentForTestSet() throws ALMServiceException {
              ALMServiceWrapper wrapper = new ALMServiceWrapper(
                           "http://localhost:8081/qcbin");
              wrapper.connect("admin", "admin", "DEFAULT", "SampleProject");
              ITestSet testSet = wrapper.getTestSet(
                           "SampleTestSetFolder\\SubTestSetFolder1", "TestSet1", 2);
              wrapper.newAttachment("D:\\Data.xlsx", "My Attachment Description",
                           testSet);
              wrapper.close();
       }





public static void createTestCaseRunAndTestCaseExecutionSteps()
                     throws ALMServiceException {
              ALMServiceWrapper wrapper = new ALMServiceWrapper(
                           "http://localhost:8081/qcbin");
              wrapper.connect("admin", "admin", "DEFAULT", "SampleProject");

              // Update Test Case Result and Attach a File
              ITestCase loginTest = wrapper.updateResult(
                           "SampleTestSetFolder\\SubTestSetFolder1", "TestSet1", 2,
                           "Login", StatusAs.PASSED);
              wrapper.newAttachment("D:\\Data.xlsx", "My Attachment Description",
                           loginTest);

              // Update Test Case Result and Attach a File
              ITestCase logoutTest = wrapper.updateResult(
                           "SampleTestSetFolder\\SubTestSetFolder1", "TestSet1", 2,
                           "Logout", StatusAs.NOT_COMPLETED);
              wrapper.newAttachment("D:\\Data.xlsx", "My Attachment Description",
                           logoutTest);

              // Create a new Run, Add the Steps for this Run and Attach a File
              ITestCaseRun loginRun = wrapper.createNewRun(loginTest, "Run 1",
                           StatusAs.PASSED);
              wrapper.addStep(loginRun, "Enter username", StatusAs.PASSED,
                           "Enters username", "enter", "enter");
              wrapper.addStep(loginRun, "Enter password", StatusAs.PASSED,
                           "Enters password", "enter", "enter");
              wrapper.addStep(loginRun, "Click Login", StatusAs.PASSED,
                           "Enters username", "", "");
              wrapper.newAttachment("D:\\Data.xlsx", "My Attachment Description",
                           loginRun);

              // Create a new Run, Add the Steps for this Run and Attach a File
              ITestCaseRun logoutRun = wrapper.createNewRun(logoutTest, "Run 2",
                           StatusAs.PASSED);
              wrapper.addStep(logoutRun, "Enter username", StatusAs.PASSED,
                           "Enters username", "enter", "enter");
              wrapper.addStep(logoutRun, "Enter password", StatusAs.PASSED,
                           "Enters password", "enter", "enter");
              wrapper.addStep(logoutRun, "Click Login", StatusAs.PASSED,
                           "Enters username", "", "");
              wrapper.newAttachment("D:\\Data.xlsx", "My Attachment Description",
                           logoutRun);
              wrapper.close();
       }


To be Contd..

383 comments:

  1. Which jar contains the ITestCase ?

    ReplyDelete
    Replies
    1. Interesting Article

      Core Java Training Institute in ChennaiJava Training Institute in Chennai Core Java Training Institute in Chennai Core Java Training Institute in Chennai

      Java Online Training Institutes Java Online Training Institutes JavaEE Training Institute in Chennai Java EE Training Institute in Chennai

      Delete
    2. Interesting Article

      Angularjs Training Institute in Chennai Angularjs Training Institute in Chennai Backbone.JS Training Institute in Chennai Backbone.JS Training Institute in Chennai Bootstrap Training Institute in Chennai Bootstrap Training Institute in Chennai Node.js Training Institute in Chennai Node.js Training Institute in Chennai Typescript Training Institute in Chennai Typescript Training Institute in Chennai

      Delete
    3. Java Training Institutes Java Training Institutes Java EE Training in Chennai Java EE Training in Chennai Java Spring Hibernate Training Institutes in Chennai J2EE Training Institutes in Chennai J2EE Training Institutes in Chennai Core Java Training Institutes in Chennai Core Java Training Institutes in Chennai

      Delete
  2. Can the ITestCaseRun be used for running a HP Perfomance Center as well ? And which jar contains this ?

    ReplyDelete
    Replies
    1. ALMServiceWrapper jar file contains all of it. It is designed to servce QC/ALM OTA API and not other applications.

      #AT

      Delete
  3. Loadrunner is an automated performance and load test product from the HP. Thus automation test tool is used to check the performance and behavior of a software application, while generating actual load. FITA is Best Loadrunner training institute in Chennai offering professional training through industrial experts.

    ReplyDelete
  4. when i try to run this program seeing issue that "gettest" function is not defined

    ReplyDelete
  5. HI AT, am back again :) ...
    I used the wrapper.newattachment option but what i see is that after the execution, the test run and the test case shows the attachment but its showing as 0kb and with 'modified' column date as '01-02-1970' every time i run. and not able to open the attachment too. Could you please let me know what would be problem?
    And just to ensure that its not the problem with my file, i tried manually attaching a file to the test case and it worked.. the attachment is showing correctly the size and the date in the 'modified' column

    ReplyDelete
    Replies
    1. Hi AT, Just found out that this is a known issue. https://docs.google.com/spreadsheet/ccc?key=0ArrZvkq9tkwPdEpfa0tFN0RIQ0ZyXy1mSGZPdzl4MVE&usp=drive_web#gid=4

      Waiting for the fix :(

      Delete
    2. I am also getting same issue.[test run and the test case shows the attachment but its showing as 0kb and with 'modified' column date as '01-02-1970' every time i run.]. Could you please let me know what would be problem? Please guide me on this

      also can I add comments to the Test Case or Test Steps. If yes, Could you please let me know the procedure?

      Delete
    3. Did got any solution for above issue
      if you got please write me to this email id
      mavuri.nagendrababu@gmail.com

      Delete
    4. Did got any solution for above issue
      if you got please write me to this email id
      mavuri.nagendrababu@gmail.com

      Delete
    5. Any update on this issue?

      Delete
    6. Did anyone able to figure out the solution to this? Please help.

      Delete
  6. Hi AT, I have another question, Is it possible to get the other fields updated in Test Run, like Duration? Currently Test Run updates only the Run name and the status. I want to update the duration or any other fields..Kindly let me know

    ReplyDelete
    Replies
    1. Hi AT, You can ignore this. I have figured it out with your code and did the changes :). I am able to get the Duration and any custom fields updated !!.

      Delete
  7. Hi, I tried the method newAttachment() to attach a new screenshot. But after execution, screenshot is not attached and even no error is thrown. I sysout the file name, folder name, testset name and to my surprise everything is perfect except the screenshot is not attached. Can you please help me out.

    ReplyDelete
    Replies
    1. Did got any solution for above issue
      if you got please write me to this email id
      mavuri.nagendrababu@gmail.com

      Delete
  8. I gathered a lot of information through this article.Every example is easy to undestandable and explaining the logic easily.Thanks!
    CCNA training in chennai | CCNA training chennai | CCNA course in chennai | CCNA course chennai

    ReplyDelete
  9. Nice Information about Selenium Scripts

    Learn Software Testing prepares individuals with current digital skills for the competitive global workforce. We works with HP Software University to bring our program successfully to the market.

    ReplyDelete
  10. Excellent article and very useful. If you wish to get the best Mobile App testing services, then Salvus App Solutions avails you with the service of software testing, SEO, ASO, etc on different operating system. For more info- visit us at- http://salvusappsolutions.com

    ReplyDelete
  11. Mobile application testing is a process by which application software developed for hand held mobile devices is tested for its functionality, usability and consistency. mobile testing training in Chennai can be automated or manual type of testing.

    ReplyDelete
  12. Does following tasks can be achieved with ALM Service Wrapper
    1. Can we clone Test set
    2. Can we pull test cases from Testplan to Test lab?

    ReplyDelete
  13. Software Test Automation solution helps firms to reap the benefits of automation at a faster pace and in an effective manner.

    ReplyDelete
  14. Can we run testcases from QC directly?

    ReplyDelete
  15. Thanks for share the useful information. keep update your blog. I did selenium training in chennai at Besant technologies.

    ReplyDelete
  16. Thanks for sharing these niche piece of coding to our knowledge. Here, I had a solution for my inconclusive problems & it’s really helps me a lot keep updates…
    Regards,
    ccna course in Chennai|ccna training in Chennai|ccna training institute in Chennai

    ReplyDelete

  17. It is nice and useful piece of info. Please keep us informing like this. Thank you for sharing this.

    Home Automation Vancouver | vancouver security | Best Security Vancouver

    ReplyDelete
  18. Really awesome blog. Your blog is really useful for me.
    Thanks for sharing this informative blog. Keep update your blog.
    Oracle Training In Chennai

    ReplyDelete
  19. I have read this content it is very nice with unique information and keep updating us.
    Digital Marketing Training in Chennai | digital marketing course in Chennai | FITA Velachery

    ReplyDelete
  20. Superb explanation & it's too clear to understand the concept as well, keep sharing admin with some updated information with right examples.
    Regards,
    Angularjs training in chennai|Angularjs training chennai|Angularjs course in chennai

    ReplyDelete
  21. Thanks for the great information in your blog Selenium Training in Chennai

    ReplyDelete
  22. Its Really very nice information..Am got the best information..Thank you for sharing the helpful information..

    Website Designing Services Bangalore | Website Development Companies Bangalore

    ReplyDelete
  23. This comment has been removed by the author.

    ReplyDelete
  24. Another great articles and very interesting to read, thanks for sharing that wonderful useful information, given programming coding was very excellent and easily observe all provided information.

    Android Training in Chennai

    ReplyDelete
  25. Your posts is really helpful for me.Thanks for your wonderful post.It is really very helpful for us and I have gathered some important information from this blog.

    SEO Training in Chennai

    ReplyDelete
  26. Thanks, I really appreciate the kind of words and i think content for sharing that valuable information.


    Java training in Chennai

    ReplyDelete
  27. Wow amazing i saw the article with execution models you had posted. It was such informative. Really its a wonderful article. Thank you for sharing and please keep update like this type of article because i want to learn more relevant to this topic.

    Dotnet Training in Chennai

    ReplyDelete
  28. This blog provides useful information about new techniques and concepts.very impressive lines are given which is very attractive.
    SEO training in chennai

    ReplyDelete
  29. Thanks for sharing great information in your blog. Got to learn new things from your Blog . It was very nice blog to learn about Selenium.
    http://thecreatingexperts.com/selenium-training-in-chennai/
    Selenium

    ReplyDelete
  30. Usually I do not read post on blogs, but I would like to say that this write-up very forced me to try and do it! Your writing style has been surprised me. Thanks, very nice article.

    Linux Training in Chennai Guindy

    ReplyDelete
  31. Amazing post dude.It will be very helpful for beginners like me.Thank you very much for this important post.Waiting for your next post.
    test automation

    ReplyDelete
  32. keep sharing your information regularly for my future reference. This content creates a new hope and inspiration with in me


    Dot Net Training Institute in Chennai


    ReplyDelete
  33. Can someone please help :
    I get the below message when creating a new defect :
    FAILED: createDefect
    com.jacob.com.ComFailException: Invoke of: AddItem
    Source:
    Description: Parameter Type is Invalid

    ReplyDelete
    Replies
    1. Hi Shankar ... I am also facing the same issue could you please let me know how u have resolved your issue....

      Delete
    2. I am also facing same issue, can anyone has got any solution? please help.

      Delete
  34. I feel happy about and I really like this learning more about this topic. keep sharing your information regularly for my future reference.

    Dot Net Training Institute in Chennai


    ReplyDelete
  35. This content creates a new hope and inspiration with in me. Thanks for sharing article like this. The way you have stated everything above is quite awesome. Keep blogging like this.



    Dot Net Training in Chennai Velachery

    ReplyDelete
  36. This blog is having the general information. Got a creative work and this is very different one.We have to develop our creativity mind.This blog helps for this. Thank you for this blog. This is very interesting and useful.

    ccna training in chennai velachery

    ReplyDelete
  37. Great post! I am actually getting ready to across this information, It's very helpful for this blog.Also great with all of the valuable information you have Keep up the good work you are doing well.

    ccna training in chennai saidapet

    ReplyDelete
  38. The strategy you have posted on this technology helped me to get into the next level and had lot of information in it. The angular js programming language is very popular which are most widely used.
    Angularjs Training in Chennai | Angularjs training Chennai

    ReplyDelete
  39. The usage of third party storage system for the data storage can be avoided in cloud computing and we can store, access the data through internet.
    cloud computing training in chennai | cloud computing courses in chennai

    ReplyDelete
  40. Well Said, you have furnished the right information that will be useful to anyone at all time. Thanks for sharing your Ideas.
    Hadoop Training Chennai | PHP Training in Chennai

    ReplyDelete


  41. Awesome article. It is so detailed and well formatted that i enjoyed reading it as well as get some new information too.


    BASE SAS training in Chennai

    ReplyDelete
  42. your information is really awesome and it is very much interesting, it is really done too.


    Best Informatica Training Institute in Chennai

    ReplyDelete

  43. Delhi is a center of delights for fun lovers and for those who want to enjoy each and every moment of life. If are you planning for a holiday celebration around Delhi then you have reached the very right place. ResortsNearDelhi.co.in, a Division of ‘COMFORT YOUR JOURNEY PVT LTD’ avails you the options for Weekend Getaways Near Delhi.
    visit: http://www.bestholidaystrip.com/

    ReplyDelete
  44. New Year 2017 is an event of pleasures. So we should praise it together with charming and a brilliant flavoring of move gathering, boundless beverages, mixed drink, barkeeps, bucketful of snacks, commencement to be the most energizing one and exquisite scrumptious food stuff with New Year bundles close Delhi.
    visit: http://newyearpackagesneardelhi.com/

    ReplyDelete

  45. for preparing bank exam and group exam , we are providing an online test model questions papers

    Bank Exam Questions and Answers

    Group Exam Questions and Answers

    ReplyDelete
  46. Thanks, I really appreciate the kind of words and i think content for sharing that valuable information.
    sas Training in Chennai

    ReplyDelete
  47. Great article. Glad to find your blog. Thanks for sharing.
    informaticatraining training in chennai

    ReplyDelete
  48. Great article. Glad to find your blog. Thanks for sharing.
    mongoDB training in chennai

    ReplyDelete
  49. looking for the Best Oracle Training in Chennai Oracle training in chennai

    ReplyDelete
  50. Observe New Year's Eve in style by heading out to experience it in one of the world's most energizing goals with British Airways. Mark the commencement to 2017 with a New Year's Eve break to one of the numerous urban areas we travel to overall, for example, Edinburgh, New York, Rio or Sydney, and wake up to a radical new view on New Year's Day. visit: New Year Packages Near Delhi

    ReplyDelete
  51. Observe New Year's Eve in style by heading out to experience it in one of the world's most energizing goals with British Airways. Mark the commencement to 2017 with a New Year's Eve break to one of the numerous urban areas we travel to overall, for example, Edinburgh, New York, Rio or Sydney, and wake up to a radical new view on New Year's Day. Visit: New Year Packages 2017

    ReplyDelete
  52. Very nice post here thanks for it .I always like and such a super contents of these post.Excellent and very cool
    idea and great content of different kinds of the valuable information's.
    seo company in chennai

    ReplyDelete
  53. Great article. Glad to find your blog. Thanks for sharing.
    angular js training in chennai

    ReplyDelete
  54. Very nice post here and thanks for it .I always like and such a super contents of these post.Excellent and very cool idea and great content of different kinds of the valuable information's.

    seo company in chennai

    ReplyDelete
  55. Well explained. Got to learn new things from your Blog on Appium.Appium training in chennai

    ReplyDelete
  56. Team, Is there any update about the issue showing attachment as 0KB in the test set and unable to open the attachment after execution.

    ReplyDelete
  57. Wonderful blog.. Thanks for sharing informative blog.. its very useful to me..

    iOS Training in Chennai

    ReplyDelete
  58. I used the wrapper.newattachment option but what i see is that after the execution, the test run and the test case shows the attachment but its showing as 0kb and with 'modified' column date as '01-02-1970' every time i run. and not able to open the attachment too. Could you please let me know what would be problem?

    ReplyDelete
  59. Hi AT,

    I used the wrapper.newattachment option but what i see is that after the execution, the test run and the test case shows the attachment but its showing as 0kb and with 'modified' column date as '01-02-1970' every time i run. and not able to open the attachment too. Could you please let me know what would be problem? its very urgent

    ReplyDelete
  60. This is an awesome post.Really very informative and creative contents. These concept is a good way to enhance the knowledge.I like it and help me to development very well.Thank you for this brief explanation and very nice information.Well, got a good knowledge.

    digital marketing course in chennai

    ReplyDelete
  61. Great post!I am actually getting ready to across this information,i am very happy to this commands.Also great blog here with all of the valuable information you have.Well done,its a great knowledge.
    Security Services in Chennai

    ReplyDelete
  62. nice blog too informative. looking and reading your points its so impressive. doing more blog like this. i really appreciated doing like this.
    SEO Company in Chennai

    ReplyDelete
  63. I really enjoyed very much with this article here. Really its a amazing article that I had ever read. I hope it will help a lot for all. Thank you so much for this amazing posts and please keep update like this excellent article. Thank you for sharing such a great blog with us. Expecting for your updation.
    Android training in chennai

    ReplyDelete
  64. I am getting error while logging the defect :
    My code -

    ALMServiceWrapper wrapper = new ALMServiceWrapper(
    "http://....../qcbin/");
    wrapper.connect("username", "password", "Domain", "project")
    IDefect defect1 = wrapper.newDefect();


    used jacob-1.18 & ATU_ALM_ServiceWrapper_2.0.jar

    Getting error -

    com.jacob.com.ComFailException: Invoke of: AddItem
    Source:
    Description: Parameter Type is Invalid

    at com.jacob.com.Dispatch.invokev(Native Method)
    at com.jacob.com.Dispatch.invokev(Dispatch.java:625)
    at com.jacob.com.Dispatch.callN(Dispatch.java:453)
    at com.jacob.com.Dispatch.call(Dispatch.java:541)

    ReplyDelete
  65. Can someone please help me to resolve the above issue

    ReplyDelete
    Replies
    1. I am also facing same issue, can anyone has got any solution? please help.

      Delete
  66. This blog is having the general information. Got a creative work and this is very different one.We have to develop our creativity mind.This blog helps for this. Thank you for this blog. This is very interesting and useful.

    AWS Training in Chennai

    ReplyDelete
  67. Great Article… I love to read your articles because your writing style is too good, its is very very helpful for all of us and I never get bored while reading your article because, they are becomes a more and more interesting from the starting lines until the end.

    Digital Marketing Company in India

    ReplyDelete
  68. Hi AT,
    I found error Test set not found error even I followed same step.I am using ALM 12.50? Could any one can help?

    Dhaval

    ReplyDelete
  69. This comment has been removed by the author.

    ReplyDelete
  70. Selenium WebDriver fits in the same role as RC did, and has incorporated the original 1.x bindings. It refers to both the language bindings and the implementations of the individual browser controlling code. This is commonly referred to as just "WebDriver" or sometimes as Selenium 2.
    Selenium Training Institute in Chennai
    Selenium Training in Chennai
    Selenium Training with placement assistance in chennai
    Online Selenium Training
    Corporate Selenium Training in Chennai

    ReplyDelete


  71. تتعدد الشركات التي تقدم خدمات ىالتنظيف لاكن لا يمكن ان تكون كلها في نفس مستوي الجوده فان كنت من الباحثين عن جودة الشركه قبل اي شئ اخر فانصحة بزيارة احدي تلك الصفحات
    شركة تنظيف مساجد بالرياض
    شركة تنظيف خزانات بالخرج
    شركة تنظيف بالخرج
    والتي تقدم افضل خدمات التنظيف بالمنزل باعلي مستوي من الكفائه

    ReplyDelete
  72. Finding the time and actual effort to create a superb article like this is great thing. I’ll learn many new stuff right here! Good luck for the next post buddy..
    Digital Marketing Company in Chennai

    ReplyDelete
  73. Thank you for taking the time to provide us with your valuable information. We strive to provide our candidates with excellent care and we take your comments to heart.As always, we appreciate your confidence and trust in us
    Digital Marketing Company in India

    ReplyDelete
  74. hi , how to identify the locator in login page..need webelement details of username , password , autheticate and submit button. please help

    ReplyDelete
  75. Very well written article. I really enjoy reading your blog. Thank you for sharing productive content with us. Visit Us: http://www.intactautomation.com

    ReplyDelete
  76. Analogica Data is the Best Test Automation Services Company in India, offer software Automation Testing Services, Automation testing is nothing but enhancing efficiency, effectiveness and the coverage of your product.

    ReplyDelete
  77. Truly a very good article on how to handle the future technology. After reading your post, thanks for taking the time to discuss this, I feel happy about and I love learning more about this topic
    Selenium Testing Online Training

    ReplyDelete
  78. I am not interested in reading all the blogs i have visited. But this one seems to be interesting, dealing test case is awesome one.Thanks for posting this valuable article.

    http://www.lockfacility.com/corporate-housekeeping-services-chennai.html

    ReplyDelete

  79. Nice Sharing..! I have been following you for a couple of months now but this is my first time commenting on a blog post. Thank you for sharing your knowledge and experience with us. Keep up the good work. Already bookmarked for future reference.

    Installment loans in Mississippi
    Payday loans in Mississippi
    Title loans in Mississippi

    ReplyDelete
  80. Thanks for posting useful information.You have provided an nice article, Thank you very much for this one. And i hope this will be useful for many people.. and i am waiting for your next post keep on updating these kinds of knowledgeable things...Really it was an awesome article...very interesting to read..
    please sharing like this information......
    Web Development Company

    ReplyDelete
  81. Thank you for your post. This is excellent information. It is amazing and wonderful to visit your site.
    Android training in chennai
    Ios training in chennai

    ReplyDelete

  82. Really it was an awesome article...very interesting to read..You have provided an nice article....Thanks for sharing..
    Web Design Company
    Web Development Company

    ReplyDelete
  83. Our Digital Marketing Training is tailored for beginners who want to learn how to stand out digitally, whether it is for their own business or a personal brand.

    digital marketing course

    ReplyDelete
  84. This article is so informatic and it really helped me to know more about the Selenium Testing. This selenium article helps the beginners to learn the best training course. So keep updating the content regularly.
    Selenium Training in Chennai | Best Selenium Training institute in Chennai | Selenium Course in Chennai

    ReplyDelete
  85. Thanks for splitting your comprehension with us. It’s really useful to me & I hope it helps the people who in need of this vital information... Software Testing Training in Bangalore

    ReplyDelete
  86. I wondered upon your blog and wanted to say that I have really enjoyed reading your blog posts. Any way I’ll be subscribing to your feed and I hope you post again soon.

    Android App Development Company

    ReplyDelete
  87. Its very useful to me. Wonderful blog.. Thanks for sharing informative Post.

    Installment loans
    Payday loans
    Title loans

    ReplyDelete
  88. This article is very much helpful and i hope this will be an useful information for the needed one. Keep on updating these kinds of informative things...
    iOS App Development Company

    ReplyDelete
  89. great and nice blog thanks sharing..I just want to say that all the information you have given here is awesome...Thank you very much for this one.
    web design Company
    web development Company
    web design Company in chennai
    web development Company in chennai
    web design Company in India
    web development Company in India

    ReplyDelete
  90. Nice steps to implement this process. Thanks. Background Verification

    ReplyDelete
  91. This article is very much helpful and i hope this will be an useful information for the needed one.Keep on updating these kinds of informative things...

    iOS App Development Company
    iOS App Development Company

    ReplyDelete
  92. Testing and test cases are concepts highlighted to make exicted..True fact about it, its intresting..The blog was awesome..

    http://marianasedu.com/mbbs-in-abroad.html

    ReplyDelete
  93. Good one actually..A well forced blog which impressed me after a long time..Test cases are really good..thanks for that.

    https://www.lyceumedu.in/lyceum-medical-college-philippines.html

    ReplyDelete
  94. This article is very much helpful and i hope this will be an useful information for the needed one. Keep on updating these kinds of informative things...
    Fitness SMS
    Fitness Text
    Salon SMS
    Salon Text
    Investor Relation SMS
    Investor Relation Text

    ReplyDelete
  95. it is really amazing...thanks for sharing....provide more useful information...
    Mobile app development company

    ReplyDelete
  96. Hi All,

    This is a great source for automation testers.
    Can anyone who solved the below issues could you please provide the solution here?
    "The issue showing attachment as 0KB in the test set and unable to open the attachment after execution."

    Thank you.
    Siva

    ReplyDelete
  97. Nice actually..well and good learned something new today..Keep going..

    https://www.lyceumedu.in/top-10-medical-colleges-in-philippines.html

    ReplyDelete
  98. I have been to various other pages but there is no other page that i came across was offering information on how Create New Defect, Test Case Run, Attach Files and Add Execution Steps. This post is very unique, i have enjoyed going through the post. We have qualified and Cheaply Hired Writers, who are always very ready to provide the best to you. We shall always provide you with quality help.

    ReplyDelete

  99. Its a wonderful post and very helpful, thanks for all this information. You are including better information regarding this topic in an effective way.Thank you so much

    Personal Installment Loans
    Payday Cash Advance loan
    Title Car loan
    Cash Advance Loan

    ReplyDelete
  100. really you have been posted an interesting article. it will be really helpful to many peoples. thank you for sharing this blog.
    Software Testing Training in Chennai | Selenium Training in Chennai

    ReplyDelete

  101. This information is impressive; I am inspired with your post writing style & how continuously you describe this topic.


    Pawn Shop

    Pawn Loans

    Pawn Shops

    Pawn Loan

    Pawn Shop near me

    ReplyDelete
  102. This article is very much helpful and i hope this will be an useful information for the needed one. Keep on updating these kinds of informative things...
    Texting API
    Text message marketing
    Digital Mobile Marketing
    Sms API
    Sms marketing

    ReplyDelete
  103. This was a very useful and a wonderful article on automation testing which can give you a brief idea about it. To learn more about Software testing, please check the link below: http://www.mnptechnologies.com/Best-Software-Testing-Training-in-Bangalore.html

    ReplyDelete
  104. I read the post and I have really enjoyed your blogs posts.looking for the next post.
    Digital Marketing Training In Bangalore.

    ReplyDelete
  105. I really enjoyed reading the Post. It was very informative and useful for me.
    Selenium Training In Bangalore

    ReplyDelete
  106. I read the post and I have really enjoyed your blogs posts.looking for the next post.
    Best SAP Training in Bangalore
    Best Java Training in Bangalore

    ReplyDelete
  107. Thanks For Your valuable posting, it was very informative
    Schulungsangebote

    ReplyDelete
  108. I read the post and I have really enjoyed your blogs posts.looking for the next post.
    Best Oracle Training in Bangalore

    ReplyDelete
  109. The website is looking bit flashy and it catches the visitors eyes. A design is pretty simple .
    office 2016 professional plus 64 bit

    ReplyDelete
  110. This comment has been removed by the author.

    ReplyDelete
  111. Thanks for share your topic and get more information topic to be discuss your page For more details:Second Marriage Matrimony,Yadav Matrimony,Christian MatrimonyMukkulathor Matrimony.

    ReplyDelete
  112. Obviously it's hard for apprentices to not worry. The exact opposite thing you feel as a hand to hand fighting white belt is casual! Everything is new. The strategies are intense and outsider to you. What's more, odds are you aren't absolutely solid, composed and adaptable at this stage. So obviously you feel tense! itfofindia.com.

    ReplyDelete
  113. Found your post interesting to read. I cant wait to see your post soon. Good Luck for the upcoming update.This article is really very interesting and effective.

    PSD to Wordpress
    wordpress website development

    ReplyDelete
  114. This comment has been removed by the author.

    ReplyDelete
  115. Hi,

    Thanks for sharing a very interesting article about Creating New Defect, TestCase Run, Attaching Files, Add Execution Steps. This is very useful information for online blog review readers. Keep it up such a nice posting like this.

    From,
    Maestro Infotech,
    Web Design Company Bangalore

    ReplyDelete
  116. This comment has been removed by the author.

    ReplyDelete
  117. Really very informative and creative contents. This concept is a good way to enhance the knowledge of Testing.thanks for

    sharing please keep it up
    Software Testing Training in Gurgaon


    ReplyDelete
  118. Easily, the is clearly the most effective topic with this registry related issue. I remain in your conclusions and will eagerly enjoy your following updates. Just saying thanks will not you need to be sufficient, for the fantasti c lucidity in your writing. I will instantly grab your rss feed to stay informed of any updates.mobile app automation specialists

    ReplyDelete
  119. https://stitchclothes.com here we stitch clothes as per your design and selection

    ReplyDelete
  120. File attached to the test case with ZERO (0 kb), Please help me out!

    ReplyDelete
  121. Best informative post that I have never seen. You are great with your this job.I am happy to see and follow your post every time. Thank you.
    digital marketing services in delhi

    ReplyDelete
  122. This testing blog is very nice thank you for sharing Angularjs Online Course Bangalore

    ReplyDelete
  123. https://stitchclothes.com here we stitch clothes as per your design and selection

    ReplyDelete
  124. https://stitchclothes.com here we stitch clothes as per your design and selection

    ReplyDelete
  125. It has been simply incredibly generous with you to provide openly what exactly many individuals would’ve marketed for an eBook to end up making some cash for their end, primarily given that you could have tried it in the event you wanted. JAVA Training in chennai

    ReplyDelete
  126. The information which you have provided is very good. It is very useful who is looking for
    core Java online training Bangalore

    ReplyDelete
  127. The information which you have provided is very goodweb design company in chennai

    ReplyDelete
  128. Great blog.
    Thank you for written this blog.This is very Helpful and informative blog.
    oracle training in chennai | vlsi training in chennai .

    ReplyDelete
  129. you have good programming skills bro... excellent.. thank you for sharing

    ReplyDelete
  130. Hey, Wow Provided Post will be Very much Informative to the People Who Visit this Site. Good Work! Thank You for Sharing.
    hr and payroll software in chennai

    ReplyDelete

  131. Health Is God aims to deliver the best possible health reviews of the supplement collections and other wellness production that range from skincare to brain, muscle, male enhancement and brain health conditions. You, the user are of utmost importance to us, and we are committed to being the portal that sustains your healthy lifestyle. Visit for more- Health is God

    ReplyDelete
  132. I think this is a real great article post.Really looking forward to read more. Visit at
    Crazy Video Hub

    ReplyDelete
  133. Thanks for sharing.. I searched for this Programming code before. But i couldnt find..

    ReplyDelete
  134. Thank you so much for sharing this article. The points discussed in the post are very informative and helpful.

    ReplyDelete
  135. Your very own commitment to getting the message throughout came to be rather powerful and have consistently enabled employees just like me to arrive at their desired goals.

    Data Science Training in Chennai
    Data science training in bangalore
    Data science online training
    Data science training in pune
    Data science training in kalyan nagar

    ReplyDelete
  136. All the points you described so beautiful. Every time i read your i blog and i am so surprised that how you can write so well.

    Devops training in Chennai
    Devops training in Bangalore
    Devops Online training
    Devops training in Pune

    ReplyDelete
  137. Wonderful article, very useful and well explanation. Your post is extremely incredible. I will refer this to my candidates...

    java training in chennai | java training in bangalore

    java online training | java training in pune

    selenium training in chennai

    selenium training in bangalore

    ReplyDelete
  138. It is a great job, I like your posts and wish you all the best. and I hope you continue this job well.
    NutraT line

    ReplyDelete
  139. I appreciate that you produced this wonderful article to help us get more knowledge about this topic. I know, it is not an easy task to write such a big article in one day, I've tried that and I've failed. But, here you are, trying the big task and finishing it off and getting good comments and ratings. That is one hell of a job done!

    java training in chennai | java training in bangalore

    java online training | java training in pune

    selenium training in chennai

    selenium training in bangalore

    ReplyDelete
  140. Hi there, I enjoy reading all of your article. I like to write a
    little comment to support you.

    ReplyDelete
  141. Interesting blog post. This blog shows that you have a great future as a content writer. Waiting for more updates... Blue prism Training in Chennai | RPA Training in Chennai

    ReplyDelete
  142. Appreciation for really being thoughtful and also for deciding on certain marvelous guides most people really want to be aware of.

    Spark Training in Chennai
    Spark with Scala Training in Chennai

    ReplyDelete
  143. This is a good post. This post give truly quality information. I’m definitely going to look into it. Really very useful tips are provided here. thank you so much. Keep up the good works.

    angularjs-Training in velachery

    angularjs-Training in annanagar

    angularjs Training in chennai

    angularjs Training in chennai

    ReplyDelete
  144. The young boys ended up stimulated to read through them and now have unquestionably been having fun with these things.
    fire and safety courses in chennai

    ReplyDelete