Search found 7 matches

by AdamHepner
Thu Oct 27, 2011 2:18 pm
Forum: Automation API
Topic: How to: Plug custom data source in?
Replies: 12
Views: 4849

Re: How to: Plug custom data source in?

Great! This is exactly what I had in mind, and it had helped me greatly. I have come about another problem, which I don't seem to understand: creation of setup and teardown modules. I mean, the TestSuiteModule class has a property ExecType, of type ModuleExecType, which contains values Setup, Execut...
by AdamHepner
Tue Oct 25, 2011 9:21 am
Forum: Automation API
Topic: How to: Plug custom data source in?
Replies: 12
Views: 4849

Re: How to: Plug custom data source in?

Well, no :). I want to do almost exactly the same things that I can do in the Ranorex Studio. I just want to do them programmatically. I like the way that the tests are layed out in Ranorex, and I'd love to be able to use that. I just need to -filter the data input programmatically at runtime -dynam...
by AdamHepner
Mon Oct 24, 2011 9:10 am
Forum: Automation API
Topic: How to: Plug custom data source in?
Replies: 12
Views: 4849

Re: How to: Plug custom data source in?

Ok, so maybe I'll rephrase my question, to present a different aspect of what I want to achieve. Assumptions: - there's a more than one datapool. They are stored in excel files, but, as they are shared between various tools, they are not "pure data" - there's a lot of metadata, noise, additional inf...
by AdamHepner
Thu Oct 20, 2011 5:40 pm
Forum: Automation API
Topic: How to: dynamically create workflows?
Replies: 4
Views: 3052

Re: How to: dynamically create workflows?

Well, I don't want to interact with them, I want to create them :). I've read through aformentioned documentation, I hacked a little bit in trial, but haven't been able to find, what I have in mind...?
by AdamHepner
Thu Oct 20, 2011 5:38 pm
Forum: Automation API
Topic: How to: Plug custom data source in?
Replies: 12
Views: 4849

Re: How to: Plug custom data source in?

Excel Interop is not the problem. The problem is, that I'd like to be able to do something along this pseudo-code: TestCase c = new TestCase(); c.Setup.Add(new SetupModule1()); c.Setup.Add(new SetupModule2()); c.Add(new CodeModule1()); c.Add(new CodeModule2()); c.BindDataSource(new CustomDataSource(...
by AdamHepner
Thu Oct 20, 2011 2:20 pm
Forum: Automation API
Topic: How to: dynamically create workflows?
Replies: 4
Views: 3052

How to: dynamically create workflows?

In my current project, it makes sense to dynamically create test case out of smaller building blocks. It means, that I'd rather have a runtime-built test case containing other testcases (along with all the data-bindings and setup/teardown), than a static flow with all possible testcases in it, where...
by AdamHepner
Thu Oct 20, 2011 2:12 pm
Forum: Automation API
Topic: How to: Plug custom data source in?
Replies: 12
Views: 4849

How to: Plug custom data source in?

I'm working on an interesting project, for migration of existing test cases to Ranorex. Existing tests are very strongly data-driven (it's basically one huge script with multiple flows possible, depending on a complex data configuration). With every run, the testers specify tests/configurations by n...