Search found 16 matches

by jaredmatthews
Fri Sep 26, 2014 5:43 pm
Forum: General Questions
Topic: Data Driven API Testing
Replies: 1
Views: 1716

Data Driven API Testing

I need to test api calls against different data sources and assign the returned XML values to variables which I can then compare to each other. For example: DataSource 1 value a stored as $variableA DataSource 2 value b stored as $variableB then compare is (value a)=(value b) I plan on doing this wi...
by jaredmatthews
Fri Sep 26, 2014 3:53 pm
Forum: Ranorex Certification
Topic: Too bad I will probably not be able to get certified
Replies: 7
Views: 8706

Re: Too bad I will probably not be able to get certified

@Fergal

Ceige and krstcs are the most helpful and knowledgeable users of Ranorex. They are always willing to help too.
by jaredmatthews
Tue Sep 09, 2014 8:10 pm
Forum: General Questions
Topic: Delete data in sql table before running test
Replies: 8
Views: 3047

Re: Delete data in sql table before running test

Thanks again man appreciate your time :)
by jaredmatthews
Tue Sep 09, 2014 7:40 pm
Forum: General Questions
Topic: Delete data in sql table before running test
Replies: 8
Views: 3047

Re: Delete data in sql table before running test

Hi Krstcs, Thanks for all your help in the multiple posts. THis is what i came up with: using System; using System.Collections.Generic; using System.Text; using System.Text.RegularExpressions; using System.Drawing; using System.Threading; using WinForms = System.Windows.Forms; using System.Data.SqlC...
by jaredmatthews
Tue Sep 09, 2014 3:28 pm
Forum: General Questions
Topic: Connecting to Sql Server2008
Replies: 6
Views: 4732

Re: Connecting to Sql Server2008

Hi Sdaly,

Do you have a sample project where i can see how you tie in this user module?

Thanks,
Jared
by jaredmatthews
Tue Sep 09, 2014 1:29 pm
Forum: General Questions
Topic: Delete data in sql table before running test
Replies: 8
Views: 3047

Re: Delete data in sql table before running test

Awesome thanks krtcs for the quick reply. that helps me on my way :)
by jaredmatthews
Tue Sep 09, 2014 1:18 pm
Forum: General Questions
Topic: Delete data in sql table before running test
Replies: 8
Views: 3047

Re: Delete data in sql table before running test

Ceige or sdaly can either of you Ranorex studs help me
by jaredmatthews
Mon Sep 08, 2014 9:49 pm
Forum: General Questions
Topic: Delete data in sql table before running test
Replies: 8
Views: 3047

Delete data in sql table before running test

Hi I want to delete all data in a sql table before running a test. I can connect to my datasource in Manage Data Sources and in the Query box i have to query i need to delete the particular data. I have the checkbox checked to auto load data when suite opens but i think its expecting my query to ret...
by jaredmatthews
Mon Jul 07, 2014 2:42 pm
Forum: Automation API
Topic: Custom Report Log
Replies: 6
Views: 8485

Re: Custom Report Log

Thanks Robert this worked!
by jaredmatthews
Wed Jul 02, 2014 4:40 pm
Forum: Automation API
Topic: Custom Report Log
Replies: 6
Views: 8485

Re: Custom Report Log

Hi Markus, I have the email sending the custom category only now in the email: report.png The problem is if a test fails the email always says passes. I used this from your example: if (category == "User") { //if (ReportLevelMail.Level <= level.Level) { CheckSuccess(level); mail.Body += string.Forma...
by jaredmatthews
Mon May 19, 2014 7:46 pm
Forum: Automation Discussions
Topic: Ranorex to MTM
Replies: 2
Views: 2807

Re: Ranorex to MTM

I would just run them as a unit test its much easier

Code: Select all

 public void TestMethod1()
        {
            Process.Start(@"C:Ranorex.exe");
        }
    }
no need to buy Ultimate for generic or coded ui tests.
by jaredmatthews
Mon May 19, 2014 7:25 pm
Forum: Automation Discussions
Topic: Best way to run .exe's
Replies: 2
Views: 3481

Re: Best way to run .exe's

Thanks Sir appreciate your time answering the question. I actually found a way to run them through unit tests now i dont need the Ultimate Version of Visual Studio. public void TestMethod1() { Process.Start(@"C:Ranorex.exe"); } } I just added an email function to my Ranorex executable and added this...
by jaredmatthews
Mon May 19, 2014 1:55 pm
Forum: Automation Discussions
Topic: Best way to run .exe's
Replies: 2
Views: 3481

Best way to run .exe's

Hi All, This is a general question, I am looking for advice or suggestions as to how to automate our test projects. I have looked into and successfully run them as generic tests in Visual Studio with our TFS server. The problem there is I used a trial version of Ultimate. We only have Pro versions h...
by jaredmatthews
Tue Apr 22, 2014 2:27 pm
Forum: Automation Tools
Topic: Ranorex/Visual Studio/Test Manager Integration
Replies: 5
Views: 3499

Re: Ranorex/Visual Studio/Test Manager Integration

No problem I appreciate you taking the time to answer my questions.
by jaredmatthews
Tue Apr 22, 2014 1:51 pm
Forum: Automation Tools
Topic: Ranorex/Visual Studio/Test Manager Integration
Replies: 5
Views: 3499

Re: Ranorex/Visual Studio/Test Manager Integration

Thanks for the fast responses. We have a bunch of tests already made in Ranorex studio. I just started here and they want me to automate our test suites using TFS and Test manager. I found this blog: running-ranorex-automated-tests-using-microsoft-test-manager Sorry I cant post URL's yet. So I creat...