Reputation: 1040
I am working on writing automation to test hardware (Wi-fi, Ethernet, Bluetooth, GPS and keyboard). Nothing is automated its all manual testing at the moment. the product will load a live USB OS and from there it will run a application. I need to write Java code which will launch the application, selects the proper options and spits out the pass or fail results. This all things needs to be developed in Java if possible or Android, I am not sure if I am allowed to use any existing third party tool.
If this is possible to write on Java or Android are there any tutorials or if there any third party suggestions I appreciate information in general about this if this is at all possible and where to look for this information.
Upvotes: 0
Views: 157
Reputation: 9152
What you are looking for is Cucumber framework. It is a framework which automates the testing for you. You write some calabash/ruby scripts and open up a port on your network and Cucumber takes care from there on.
Check this link: https://github.com/cucumber/cucumber/wiki Also see: http://cukes.info/
Also search for the cucumber_book by Matt Wynee if you can get one. It is a real good reference.
Upvotes: 1