criscros
criscros

Reputation: 346

Testing automation tool suited for operation team

I would like to start using an testing framework that does the following:

I do not want something focused on web development

I will like to use such a tool or maybe collaborate on building one. I hope I was explicit enough. Thank you .

Upvotes: 1

Views: 559

Answers (1)

Bryan Oakley
Bryan Oakley

Reputation: 385980

You might want to look at the robot framework combined with jenkins. Robotframework is a tool written in python for doing keyword-based acceptance testing. Jenkins is a continuous integration tool which allows you to schedule jobs, and distribute jobs amongst a grid of nodes.

Robotframework tests can do anything python can do, plus a whole lot more. It has a remote interface, which means you can write test keywords in just about any language. For example, I had a job where we had keywords written in Java. In another job we used robotframework with .NET-based keywords. This can be accomplished via a remote interface (so you can write keywords in many different languages) or you can run robot using jython to run on the JVM, or iron python to run in a .NET environment.

Upvotes: 1

Related Questions