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..

231 comments:

  1. Which jar contains the ITestCase ?

    ReplyDelete
  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. 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
  19. This comment has been removed by the author.

    ReplyDelete
  20. 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
  21. 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
  22. Thanks, I really appreciate the kind of words and i think content for sharing that valuable information.


    Java training in Chennai

    ReplyDelete
  23. 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
  24. 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
  25. 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
  26. 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
  27. 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
  28. 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
  29. 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


  30. 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
  31. your information is really awesome and it is very much interesting, it is really done too.


    Best Informatica Training Institute in Chennai

    ReplyDelete

  32. 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
  33. Thanks, I really appreciate the kind of words and i think content for sharing that valuable information.
    sas Training in Chennai

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

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

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

    ReplyDelete
  37. 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
  38. 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
  39. Great article. Glad to find your blog. Thanks for sharing.
    angular js training in chennai

    ReplyDelete
  40. 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
  41. 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
  42. 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
  43. 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
  44. 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
  45. 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
  46. 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
  47. 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
  48. This comment has been removed by the author.

    ReplyDelete
  49. 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


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

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

    ReplyDelete
  52. 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
  53. 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
  54. 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

  55. 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
  56. 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
  57. 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
  58. 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
  59. Nice steps to implement this process. Thanks. Background Verification

    ReplyDelete
  60. 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
  61. 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
  62. 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
  63. Nice actually..well and good learned something new today..Keep going..

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

    ReplyDelete
  64. 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
  65. 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
  66. 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
  67. I really enjoyed reading the Post. It was very informative and useful for me.
    Selenium Training In Bangalore

    ReplyDelete
  68. 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
  69. This comment has been removed by the author.

    ReplyDelete
  70. 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
  71. 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
  72. This comment has been removed by the author.

    ReplyDelete
  73. 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
  74. This comment has been removed by the author.

    ReplyDelete
  75. 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
  76. 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
  77. File attached to the test case with ZERO (0 kb), Please help me out!

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

    ReplyDelete
  79. 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
  80. The information which you have provided is very good. It is very useful who is looking for
    core Java online training Bangalore

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

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

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

    ReplyDelete
  84. 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
  85. Thanks for sharing.. I searched for this Programming code before. But i couldnt find..

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

    ReplyDelete
  87. 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
  88. 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
  89. 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
  90. Hi there, I enjoy reading all of your article. I like to write a
    little comment to support you.

    ReplyDelete
  91. 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
  92. 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
  93. This is good site and nice point of view.I learnt lots of useful information.
    python training in velachery
    python training institute in chennai

    ReplyDelete
  94. When I initially commented, I clicked the “Notify me when new comments are added” checkbox and now each time a comment is added I get several emails with the same comment. Is there any way you can remove people from that service? Thanks.
    Amazon Web Services Training in OMR , Chennai | Best AWS Training in OMR,Chennai
    AWS Training in Chennai |Best Amazon Web Services Training in Chennai
    AWS Training in Bangalore |Best AWS training in Bangalore
    Amazon Web Services Training in Tambaram, Chennai|Best AWS Training in Tambaram, Chennai

    ReplyDelete
  95. Your good knowledge and kindness in playing with all the pieces were very useful. I don’t know what I would have done if I had not encountered such a step like this.
    python training in chennai
    python training in Bangalore
    Python training institute in chennai

    ReplyDelete
  96. Thanks for the good words! Really appreciated. Great post. I’ve been commenting a lot on a few blogs recently, but I hadn’t thought about my approach until you brought it up. 

    angularjs online Training

    angularjs Training in marathahalli

    angularjs interview questions and answers

    angularjs Training in bangalore

    angularjs Training in bangalore

    ReplyDelete
  97. Hello! This is my first visit to your blog! We are a team of volunteers and starting a new initiative in a community in the same niche. Your blog provided us useful information to work on. You have done an outstanding job.

    Best AWS Training in Chennai | Amazon Web Services Training in Chennai

    AWS Training in Chennai | AWS Training Institute in Chennai Velachery, Tambaram, OMR


    AWS Training in Chennai |Best Amazon Web Services Training in Chennai


    AWS Interview Questions And Answers

    ReplyDelete
  98. 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!
    Data Science Training in Indira nagar
    Data Science training in marathahalli
    Data Science Interview questions and answers
    Data Science training in btm layout | Data Science Training in Bangalore
    Data Science Training in BTM Layout | Data Science training in Bangalore
    Data science training in kalyan nagar

    ReplyDelete
  99. Your good knowledge and kindness in playing with all the pieces were very useful. I don’t know what I would have done if I had not encountered such a step like this.
    angularjs-Training in velachery

    angularjs Training in bangalore

    angularjs Training in bangalore

    angularjs Training in btm

    angularjs Training in electronic-city

    angularjs online Training

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

    ReplyDelete
  101. Get professional Java training from Bangalore best java training institute Trinity Learning. With experienced faculties, we offer quality training throughout the course with job placement.

    ReplyDelete
  102. Amazing Article ! I have bookmarked this article page as i received good information from this. All the best for the upcoming articles. I will be waiting for your new articles. Thank You ! Kindly Visit Us @ Coimbatore Travels | Ooty Travels | Coimbatore Airport Taxi | Coimbatore taxi | Coimbatore Taxi

    ReplyDelete
  103. Amazing Article ! I have bookmarked this article page as i received good information from this. All the best for the upcoming articles. I will be waiting for your new articles. Thank You ! Kindly Visit Us @ Coimbatore Travels | Ooty Travels | Coimbatore Airport Taxi | Coimbatore taxi | Coimbatore Taxi

    ReplyDelete
  104. Expected to form you a next to no word to thank you once more with respect to the decent recommendations you've contributed here.
    iosh course in chennai

    ReplyDelete
  105. Thanks for such a great article here. I was searching for something like this for quite a long time and at last I’ve found it on your blog. It was definitely interesting for me to read about their market situation nowadays. Well written article Thank You for Sharing with Us pmp training Chennai | pmp training centers in Chenai | pmp training institutes in Chennai | pmp training and certification in Chennai | pmp training in velachery

    ReplyDelete
  106. This concept is a good way to enhance the knowledge.thanks for sharing. please keep it up Salesforce Online Training Hyderabad

    ReplyDelete
  107. Hey, Wow all the posts are very informative for the people who visit this site. Good work! We also have a Website. Please feel free to visit our site. Thank you for sharing. pmp training in velachery | pmp training near me | pmp training courses online | project management courses in chennai |pmp training class in chennai

    ReplyDelete
  108. 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.
    Data Science training in Chennai
    Data science training in Bangalore
    Data science training in pune
    Data science online training
    Data Science Interview questions and answers
    Data Science Tutorial


    ReplyDelete
  109. 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. 
    rpa training in bangalore
    rpa training in pune
    rpa online training
    best rpa training in bangalore

    ReplyDelete
  110. 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. 
    rpa training in bangalore
    rpa training in pune
    rpa online training
    best rpa training in bangalore

    ReplyDelete
  111. Hello! This is my first visit to your blog! We are a team of volunteers and starting a new initiative in a community in the same niche. Your blog provided us useful information to work on. You have done an outstanding job.
    online Python training
    python training in chennai

    ReplyDelete
  112. I really enjoy simply reading all of your weblogs. Simply wanted to inform you that you have people like me who appreciate your work. Definitely a great post I would like to read this
    DevOps Training in Bangalore

    DevOps Training in Bangalore

    DevOps Training in Bangalore

    DevOps Training in Marathahalli

    DevOps Training in Pune

    DevOps Online Training-gangboard

    ReplyDelete
  113. A very nice guide. I will definitely follow these tips. Thank you for sharing such detailed article. I am learning a lot from you.
    iphone service center in chennai | apple ipad service center in chennai | apple iphone service center in chennai | Mobile service center in chennai

    ReplyDelete
  114. Very Informative www.aminorich.nl Animal Feed Supplement |Cattle Feed supplement |Poultry Feed Supplement

    ReplyDelete
  115. I was very interested in the article , it’s quite inspiring I should admit. I like visiting your site since I always come across interesting articles like this one. Keep sharing! Regards. Read more about Software Testing Services

    ReplyDelete
  116. Great Post,really it was very helpful for us.
    Thanks a lot for sharing!
    I found this blog to be very useful!!
    Software testing training in Bangalore

    ReplyDelete
  117. Great Post,really it was very helpful for us.
    Thanks a lot for sharing!
    I found this blog to be very useful!!
    Software testing training in Bangalore

    ReplyDelete
  118. What is web and digital design?
    The aim of the Master’s course in net and Digital design is that the creation of various skilled profiles with in the web media design space that ar ready to set up, turn out and share through the online communities a replacement generation of content and services in an efficient manner. If you want courses oriented any details to contact us: Best Web Design Training

    ReplyDelete
  119. Great post. Articles that have meaningful and insightful comments are more enjoyable, at least to me. It’s interesting to read what other people thought and how it relates to them or their clients, as their perspective could possibly help you in the future.
    iphone display replacement in chennai | Mobile phone water damage service in chennai | iphone glass replacement in chennai | iphone battery replacement in chennai | 100% genuine apple parts | iphone unlocking service in chennai

    ReplyDelete
  120. Such an great and nice blog, Thank you for sharing this wonderful post.

    Data Science Courses in Bangalore

    ReplyDelete
  121. Thanks for the informative and helpful post, obviously in your blog everything is good..
    Data Science Course in Pune

    ReplyDelete
  122. Pretty good post. I just stumbled 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.
    Great post, Thanks for sharing.

    ReplyDelete
  123. Hi Dear

    Thanks for sharing the Test Automation Strategy blog with us. It is a very useful post for me and others. I'm waiting for your next post.

    ReplyDelete
  124. Selama kau bermain dan menjalankan pemasangan taruhan poker secara online, didalamnya para player akan dihadapkan dengan beberapa keputusan yang mesti diambil dan diketahui dengan beberapa istilah. Sesudah istilah penting dalam permainan poker diantaranya merupakan
    asikqq
    http://dewaqqq.club/
    http://sumoqq.today/
    interqq
    pionpoker
    bandar ceme terpercaya
    betgratis
    paito warna terlengkap
    syair sgp

    ReplyDelete
  125. Really appreciate this wonderful post that you have provided for us.Great site and a great topic as well i really get amazed to read this. Its really good.
    I like viewing web sites which comprehend the price of delivering the excellent useful resource free of charge. I truly adored reading your posting. Thank you!
    Data Science Courses

    ReplyDelete
  126. Such a very useful article. Very interesting to read this article.I would like to thank you for the efforts you had made for writing this awesome article.
    I just got to this amazing site not long ago. I was actually captured with the piece of resources you have got here. Big thumbs up for making such wonderful blog page!.
    Data Science Courses

    ReplyDelete
  127. This code is very helpful there are many important information given. I want to give my post link also https://indiancybersecuritysolutions.com/python-training-in-bangalore/

    ReplyDelete
  128. Nice blog information I loved it
    Sanjary Kids is one of the best play school and preschool in Hyderabad,India. Give your child the best preschool experience by choosing the best playschool of Hyderabad in Abids. we provide programs like Play group,Nursery,Junior KG,Senior KG,and provides Teacher Training Program.
    ­play school in hyderabad

    ReplyDelete
  129. Wow what a Great Information about World Day its exceptionally pleasant educational post. a debt of gratitude is in order for the post.
    rpa training in malaysia

    ReplyDelete
  130. Nice blog posting information

    Sanjary Academy is the best Piping Design institute in Hyderabad, Telangana. It is the best Piping design Course in India and we have offer professional Engineering Courses like Piping design Course, QA/QC Course, document controller course, Pressure Vessel Design Course, Welding Inspector Course, Quality Management Course and Safety Officer Course.
    Piping Design Course
    Piping Design Course in Hyderabad ­
    Piping Design Course in India­

    ReplyDelete
  131. Good blog informative and understandable

    Pressure Vessel Design Course is one of the courses offered by Sanjary Academy in Hyderabad. We have offer professional Engineering Course like Piping Design Course,QA/QC Course,document Controller course,pressure Vessel Design Course,Welding Inspector Course, Quality Management Course, Safety officer course.
    Welding Inspector Course
    Safety officer course
    Quality Management Course
    Quality Management Course in India

    ReplyDelete
  132. Great post very useful info thanks for this post ....
    Data science training chennai

    ReplyDelete
  133. Your style is unique in comparison to other people I've read stuff from. Thanks for posting when you've got the opportunity, Guess I'll just book mark this site.
    UI Development Training in Bangalore
    Reactjs Training in Bangalore
    PHP Training in Bangalore

    ReplyDelete
  134. Thanks for sharing such a great information..Its really nice and informative.... software testing course

    ReplyDelete