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..
Which jar contains the ITestCase ?
ReplyDeleteInteresting Article
DeleteCore 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
Interesting Article
DeleteAngularjs 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
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
DeleteI have read your blog its very attractive and impressive. I like it your blog.
DeleteDigital Marketing Company in Chennai Digital Marketing Agency
SEO Company in India SEO Services in India
Digital Marketing Company in Chennai
Can the ITestCaseRun be used for running a HP Perfomance Center as well ? And which jar contains this ?
ReplyDeleteALMServiceWrapper jar file contains all of it. It is designed to servce QC/ALM OTA API and not other applications.
Delete#AT
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.
ReplyDeletewhen i try to run this program seeing issue that "gettest" function is not defined
ReplyDeleteHI AT, am back again :) ...
ReplyDeleteI 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
Hi AT, Just found out that this is a known issue. https://docs.google.com/spreadsheet/ccc?key=0ArrZvkq9tkwPdEpfa0tFN0RIQ0ZyXy1mSGZPdzl4MVE&usp=drive_web#gid=4
DeleteWaiting for the fix :(
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
Deletealso can I add comments to the Test Case or Test Steps. If yes, Could you please let me know the procedure?
Did got any solution for above issue
Deleteif you got please write me to this email id
mavuri.nagendrababu@gmail.com
Did got any solution for above issue
Deleteif you got please write me to this email id
mavuri.nagendrababu@gmail.com
I also face same issue
DeleteAny update on this issue?
DeleteDid anyone able to figure out the solution to this? Please help.
DeleteHi 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
ReplyDeleteHi 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 !!.
DeleteVery helpful information on Automation Testing
ReplyDeleteHi, 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.
ReplyDeleteDid got any solution for above issue
Deleteif you got please write me to this email id
mavuri.nagendrababu@gmail.com
I gathered a lot of information through this article.Every example is easy to undestandable and explaining the logic easily.Thanks!
ReplyDeleteCCNA training in chennai | CCNA training chennai | CCNA course in chennai | CCNA course chennai
useful tutorial . Thanks for sharing.
ReplyDeleteSelenium Automation Testing Framework
Nice Information about Selenium Scripts
ReplyDeleteLearn 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.
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
ReplyDeleteMobile 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.
ReplyDeleteDoes following tasks can be achieved with ALM Service Wrapper
ReplyDelete1. Can we clone Test set
2. Can we pull test cases from Testplan to Test lab?
Software Test Automation solution helps firms to reap the benefits of automation at a faster pace and in an effective manner.
ReplyDeleteGreat post. I really enjoyed it. Thanks
ReplyDeleteindustrial electrical contractors in Chennai
✔ PLC Training in chennai
ReplyDelete✔ PLC Training Institute in chennai
✔ PLC Training Center in chennai
✔ PLC Training Course in chennai
✔ PLC Course in chennai
✔ PLC SCADA Training in chennai
✔ PLC Training Centre in chennai
✔ PLC SCADA Training Institute in chennai
✔ Best PLC Training in chennai
✔ Best PLC Training Institute in chennai
✔ DCS Training in chennai
✔ Automation Training in chennai
✔ Automation Training Institute in chennai
✔ Industrial Automation Training in chennai
✔ Process Automation Training in chennai
✔ Robotics Training in chennai
✔ Inplant Training in chennai
Great explanation. Thanks fr sharing.
ReplyDeleteweb design institute in chennai
Can we run testcases from QC directly?
ReplyDeleteThanks for share the codes .
ReplyDeleteIT Services
Thanks for the post.
ReplyDeleteDigital Marketing Training
Digital Marketing Training Institutes in Chennai
Thanks for share the useful information. keep update your blog. I did selenium training in chennai at Besant technologies.
ReplyDeleteThanks 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…
ReplyDeleteRegards,
ccna course in Chennai|ccna training in Chennai|ccna training institute in Chennai
ReplyDeleteEmbedded system training in chennai
Embedded Course training in chennai
Matlab training in chennai
Android training in chennai
LabVIEW training in chennai
Arduino training in chennai
Robotics training in chennai
Oracle training in chennai
Final year projects in chennai
Mechanical projects in chennai
ece projects in chennai
PLC training in chennai
ReplyDeleteAutomation training in chennai
Best plc training in chennai
PLC SCADA training in chennai
Process automation training in chennai
Final year eee projects in chennai
VLSI training in chennai
ReplyDeleteIt 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
Really awesome blog. Your blog is really useful for me.
ReplyDeleteThanks for sharing this informative blog. Keep update your blog.
Oracle Training In Chennai
I have read this content it is very nice with unique information and keep updating us.
ReplyDeleteDigital Marketing Training in Chennai | digital marketing course in Chennai | FITA Velachery
Superb explanation & it's too clear to understand the concept as well, keep sharing admin with some updated information with right examples.
ReplyDeleteRegards,
Angularjs training in chennai|Angularjs training chennai|Angularjs course in chennai
Thanks for the great information in your blog Selenium Training in Chennai
ReplyDeleteIts Really very nice information..Am got the best information..Thank you for sharing the helpful information..
ReplyDeleteWebsite Designing Services Bangalore | Website Development Companies Bangalore
This comment has been removed by the author.
ReplyDeleteVery Nice article ... QTP Training in Chennai
ReplyDeleteAnother 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.
ReplyDeleteAndroid Training in Chennai
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.
ReplyDeleteSEO Training in Chennai
Thanks, I really appreciate the kind of words and i think content for sharing that valuable information.
ReplyDeleteJava training in Chennai
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.
ReplyDeleteDotnet Training in Chennai
Nice and wonderful article..
ReplyDeleteSelenium Training in Chennai | QTP Training in Chennai
This blog provides useful information about new techniques and concepts.very impressive lines are given which is very attractive.
ReplyDeleteSEO training in chennai
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.
ReplyDeletehttp://thecreatingexperts.com/selenium-training-in-chennai/
Selenium
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.
ReplyDeleteLinux Training in Chennai Guindy
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.
ReplyDeletetest automation
keep sharing your information regularly for my future reference. This content creates a new hope and inspiration with in me
ReplyDeleteDot Net Training Institute in Chennai
Can someone please help :
ReplyDeleteI get the below message when creating a new defect :
FAILED: createDefect
com.jacob.com.ComFailException: Invoke of: AddItem
Source:
Description: Parameter Type is Invalid
Hi Shankar ... I am also facing the same issue could you please let me know how u have resolved your issue....
DeleteI am also facing same issue, can anyone has got any solution? please help.
DeleteI feel happy about and I really like this learning more about this topic. keep sharing your information regularly for my future reference.
ReplyDeleteDot Net Training Institute in Chennai
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.
ReplyDeleteDot Net Training in Chennai Velachery
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.
ReplyDeleteccna training in chennai velachery
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.
ReplyDeleteccna training in chennai saidapet
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.
ReplyDeleteAngularjs Training in Chennai | Angularjs training Chennai
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.
ReplyDeletecloud computing training in chennai | cloud computing courses in chennai
Thanks for sharing these coding part. This is very useful..
ReplyDeleteWebsite Development Services in Bangalore | Website Development Services in Bangalore
Well Said, you have furnished the right information that will be useful to anyone at all time. Thanks for sharing your Ideas.
ReplyDeleteHadoop Training Chennai | PHP Training in Chennai
ReplyDeleteAwesome 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
lenovo laptop service center chennai
ReplyDeleteyour information is really awesome and it is very much interesting, it is really done too.
ReplyDeleteBest Informatica Training Institute in Chennai
ReplyDeleteDelhi 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/
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.
ReplyDeletevisit: http://newyearpackagesneardelhi.com/
ReplyDeletefor 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
Nice and wonderful article.........
ReplyDeleteinformatica Training in Chennai
Thanks, I really appreciate the kind of words and i think content for sharing that valuable information.
ReplyDeletesas Training in Chennai
Great article. Glad to find your blog. Thanks for sharing.
ReplyDeleteinformaticatraining training in chennai
Great article. Glad to find your blog. Thanks for sharing.
ReplyDeletemongoDB training in chennai
Awesome article.websphere Training in chennai
ReplyDeletelooking for the Best Oracle Training in Chennai Oracle training in chennai
ReplyDeleteThe Best SAS Training in Chennai sas training in chennai
ReplyDeleteThe Best Selenium Training In Chennai
ReplyDeleteselenium training in chennai
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
ReplyDeleteObserve 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
ReplyDeleteVery nice post here thanks for it .I always like and such a super contents of these post.Excellent and very cool
ReplyDeleteidea and great content of different kinds of the valuable information's.
seo company in chennai
Very nice post here thanks for it .
ReplyDeletephp training in chennai
Great article. Glad to find your blog. Thanks for sharing.
ReplyDeleteangular js training in chennai
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.
ReplyDeleteseo company in chennai
I loved your article. Great.
ReplyDeleteSCCM 2012 Online Coaching Classes In Hyderabad India
Hadoop Online Tutoring Service Platform From India
Thanks for sharing this valuable information.
ReplyDeleteieee java projects in chennai
ieee dotnet projects in chennai
mba projects in chennai
be projects in chennai
ns2 projects in chennai
mca projects in chennai
bulk projects in chennai
Thank you for your nice post. Keep updating.ERP software solution chennai|Leather ERP software chennai|ERP in chennai|ERP for Trading companies|ERP for Franchise
ReplyDeleteWell explained. Got to learn new things from your Blog on Appium.Appium training in chennai
ReplyDeleteTeam, Is there any update about the issue showing attachment as 0KB in the test set and unable to open the attachment after execution.
ReplyDeleteWonderful blog.. Thanks for sharing informative blog.. its very useful to me..
ReplyDeleteiOS Training in Chennai
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?
ReplyDeleteHi AT,
ReplyDeleteI 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
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.
ReplyDeletedigital marketing course in chennai
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.
ReplyDeleteSecurity Services in Chennai
nice blog too informative. looking and reading your points its so impressive. doing more blog like this. i really appreciated doing like this.
ReplyDeleteSEO Company in Chennai
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.
ReplyDeleteAndroid training in chennai
I am getting error while logging the defect :
ReplyDeleteMy 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)
Can someone please help me to resolve the above issue
ReplyDeleteI am also facing same issue, can anyone has got any solution? please help.
DeleteThis 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.
ReplyDeleteAWS Training in Chennai
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.
ReplyDeleteDigital Marketing Company in India
Hi AT,
ReplyDeleteI found error Test set not found error even I followed same step.I am using ALM 12.50? Could any one can help?
Dhaval
This comment has been removed by the author.
ReplyDeleteSelenium 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.
ReplyDeleteSelenium Training Institute in Chennai
Selenium Training in Chennai
Selenium Training with placement assistance in chennai
Online Selenium Training
Corporate Selenium Training in Chennai
Nice information
ReplyDeleteBest Linux Training Center in Chennai
Red Hat Linux Training in Chennai
ReplyDeleteتتعدد الشركات التي تقدم خدمات ىالتنظيف لاكن لا يمكن ان تكون كلها في نفس مستوي الجوده فان كنت من الباحثين عن جودة الشركه قبل اي شئ اخر فانصحة بزيارة احدي تلك الصفحات
شركة تنظيف مساجد بالرياض
شركة تنظيف خزانات بالخرج
شركة تنظيف بالخرج
والتي تقدم افضل خدمات التنظيف بالمنزل باعلي مستوي من الكفائه
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..
ReplyDeleteDigital Marketing Company in Chennai
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
ReplyDeleteDigital Marketing Company in India
Really nice information....Thank you for sharing the helpful information..
ReplyDeleteWebsite Designing Company in Delhi | Website Designing Company in Rohini | Website Designing Company in Kirti Nagar
hi , how to identify the locator in login page..need webelement details of username , password , autheticate and submit button. please help
ReplyDeleteVery well written article. I really enjoy reading your blog. Thank you for sharing productive content with us. Visit Us: http://www.intactautomation.com
ReplyDeleteAnalogica 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.
ReplyDeleteTruly 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
ReplyDeleteSelenium Testing Online Training
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.
ReplyDeletehttp://www.lockfacility.com/corporate-housekeeping-services-chennai.html
ReplyDeleteNice 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
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..
ReplyDeleteplease sharing like this information......
Web Development Company
Thank you for your post. This is excellent information. It is amazing and wonderful to visit your site.
ReplyDeleteAndroid training in chennai
Ios training in chennai
ReplyDeleteReally it was an awesome article...very interesting to read..You have provided an nice article....Thanks for sharing..
Web Design Company
Web Development Company
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.
ReplyDeletedigital marketing course
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.
ReplyDeleteSelenium Training in Chennai | Best Selenium Training institute in Chennai | Selenium Course in Chennai
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
ReplyDeleteI 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.
ReplyDeleteAndroid App Development Company
Its very useful to me. Wonderful blog.. Thanks for sharing informative Post.
ReplyDeleteInstallment loans
Payday loans
Title loans
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...
ReplyDeleteiOS App Development Company
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.
ReplyDeleteweb 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
Nice steps to implement this process. Thanks. Background Verification
ReplyDeleteThis 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...
ReplyDeleteiOS App Development Company
iOS App Development Company
Testing and test cases are concepts highlighted to make exicted..True fact about it, its intresting..The blog was awesome..
ReplyDeletehttp://marianasedu.com/mbbs-in-abroad.html
Good one actually..A well forced blog which impressed me after a long time..Test cases are really good..thanks for that.
ReplyDeletehttps://www.lyceumedu.in/lyceum-medical-college-philippines.html
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...
ReplyDeleteFitness SMS
Fitness Text
Salon SMS
Salon Text
Investor Relation SMS
Investor Relation Text
it is really amazing...thanks for sharing....provide more useful information...
ReplyDeleteMobile app development company
Hi All,
ReplyDeleteThis 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
Nice actually..well and good learned something new today..Keep going..
ReplyDeletehttps://www.lyceumedu.in/top-10-medical-colleges-in-philippines.html
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
ReplyDeleteIts 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
really you have been posted an interesting article. it will be really helpful to many peoples. thank you for sharing this blog.
ReplyDeleteSoftware Testing Training in Chennai | Selenium Training in Chennai
ReplyDeleteThis 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
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...
ReplyDeleteTexting API
Text message marketing
Digital Mobile Marketing
Sms API
Sms marketing
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
ReplyDeleteI read the post and I have really enjoyed your blogs posts.looking for the next post.
ReplyDeleteDigital Marketing Training In Bangalore.
I really enjoyed reading the Post. It was very informative and useful for me.
ReplyDeleteBest Software Training institute in Bangalore
Best Java Training institute in Bangalore
Thank you for the informative and relevant post which would be very useful. Please keep posting new contents.
ReplyDeleteBest Software Training institute in bangalore
Best SAP Training institute In Bangalore.
Best Advanced Excel Training Institute In Bangalore.
I really enjoyed reading the Post. It was very informative and useful for me.
ReplyDeleteSelenium Training In Bangalore
It's Really A Great Post
ReplyDeleteBest Elegant IT Services
I read the post and I have really enjoyed your blogs posts.looking for the next post.
ReplyDeleteBest SAP Training in Bangalore
Best Java Training in Bangalore
Thanks For Your valuable posting, it was very informative
ReplyDeleteSchulungsangebote
I read the post and I have really enjoyed your blogs posts.looking for the next post.
ReplyDeleteBest Oracle Training in Bangalore
The website is looking bit flashy and it catches the visitors eyes. A design is pretty simple .
ReplyDeleteoffice 2016 professional plus 64 bit
This comment has been removed by the author.
ReplyDeleteThanks for share your topic and get more information topic to be discuss your page For more details:Second Marriage Matrimony,Yadav Matrimony,Christian Matrimony, Mukkulathor Matrimony.
ReplyDeleteIt's A Nice Post. Thank You For Sharing.
ReplyDeleteAdvanced Digital Marketing Course in Bangalore
Thanks for sharing this.
ReplyDeletePost graduation education in germany
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.
ReplyDeletegood post... thanks for sharing the useful information
ReplyDeletehttp://www.amorvet.com
animal feed supplements | herbal veterinary products | animal health products manufacturers | Veterinary Product Manufacturer in India,Delhi
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.
ReplyDeletePSD to Wordpress
wordpress website development
This comment has been removed by the author.
ReplyDeletegood post.... i like it.... keep updating..
ReplyDeletehttp://www.arosolchemicals.com/
organic feed additives | veterinary feed additives | Pig and swine feed additives | Veterinary Product Manufacturer in India,Delhi | poultry feed supplements
Hi,
ReplyDeleteThanks 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
This comment has been removed by the author.
ReplyDeleteReally very informative and creative contents. This concept is a good way to enhance the knowledge of Testing.thanks for
ReplyDeletesharing please keep it up
Software Testing Training in Gurgaon
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
ReplyDeletehttps://stitchclothes.com here we stitch clothes as per your design and selection
ReplyDeleteFile attached to the test case with ZERO (0 kb), Please help me out!
ReplyDeleteBest 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.
ReplyDeletedigital marketing services in delhi
This testing blog is very nice thank you for sharing Angularjs Online Course Bangalore
ReplyDeletehttps://stitchclothes.com here we stitch clothes as per your design and selection
ReplyDeletehttps://stitchclothes.com here we stitch clothes as per your design and selection
ReplyDeleteThank you for accepting comments about our site
ReplyDeleteشركة تنظيف فلل بالرياض
شركة تنظيف موكيت بالرياضlevel
شركة تنظيف خزانات بالرياض
شركة تسليك مجارى بالرياض
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
ReplyDeleteThe information which you have provided is very good. It is very useful who is looking for
ReplyDeletecore Java online training Bangalore
The information which you have provided is very goodweb design company in chennai
ReplyDeleteGreat blog.
ReplyDeleteThank you for written this blog.This is very Helpful and informative blog.
oracle training in chennai | vlsi training in chennai .
This is one awesome blog article. Much thanks again selenium Online Training Hyderabad
ReplyDeleteThank you for sharing your information
ReplyDeleteMobile app development company in chennai
Web design company in chennai
web development company in chennai
Nice blog very informative...
ReplyDeleteThanks for sharing...
Industrial Training, Automation PLC SCADA Training, PLC Training, Embedded Sysytem Training
thanks for sharing
ReplyDeleteSoftware Testing Training In Chennai
you have good programming skills bro... excellent.. thank you for sharing
ReplyDeleteHey, Wow Provided Post will be Very much Informative to the People Who Visit this Site. Good Work! Thank You for Sharing.
ReplyDeletehr and payroll software in chennai
ReplyDeleteHealth 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
I think this is a real great article post.Really looking forward to read more. Visit at
ReplyDeleteCrazy Video Hub
Thanks for sharing.. I searched for this Programming code before. But i couldnt find..
ReplyDeleteThank you so much for sharing this article. The points discussed in the post are very informative and helpful.
ReplyDeleteThank you a lot for providing individuals with a very spectacular possibility to read critical reviews from this site.
ReplyDeleteData Science Training in Chennai
Data science training in bangalore
online Data science training
Data science training in pune
Data science training in kalyan nagar
Data science training in Bangalore
Data science training in tambaram
Data science training in kalyan nagar
This blog is very nice, share more post.
ReplyDeleteBest Selenium Training Institute in Bangalore | Software Testing Training in Bangalore | Selenium Training in Bangalore
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.
ReplyDeleteData Science Training in Chennai
Data science training in bangalore
Data science online training
Data science training in pune
Data science training in kalyan nagar
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.
ReplyDeleteDevops training in Chennai
Devops training in Bangalore
Devops Online training
Devops training in Pune
Wonderful article, very useful and well explanation. Your post is extremely incredible. I will refer this to my candidates...
ReplyDeletejava training in chennai | java training in bangalore
java online training | java training in pune
selenium training in chennai
selenium training in bangalore
It is a great job, I like your posts and wish you all the best. and I hope you continue this job well.
ReplyDeleteNutraT line
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!
ReplyDeletejava training in chennai | java training in bangalore
java online training | java training in pune
selenium training in chennai
selenium training in bangalore
Hi there, I enjoy reading all of your article. I like to write a
ReplyDeletelittle comment to support you.
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
ReplyDeleteThank you for your information.It is very nice.
ReplyDeleteAutomation Anywhere Training in Chennai |
Automation Anywhere Training in Chennai OMR
Appreciation for really being thoughtful and also for deciding on certain marvelous guides most people really want to be aware of.
ReplyDeleteSpark Training in Chennai
Spark with Scala Training in Chennai
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.
ReplyDeleteangularjs-Training in velachery
angularjs-Training in annanagar
angularjs Training in chennai
angularjs Training in chennai
The young boys ended up stimulated to read through them and now have unquestionably been having fun with these things.
ReplyDeletefire and safety courses in chennai
ReplyDeletelaw college
law college in Jaipur
Best law college in Jaipur
Law Course In Jaipur
Top College Of law In Jaipur
Vidyasthali Law College
Best Law College
Jaipur Law College