Since 0.0.5 version Aerial has an ability to generate Java projects from archetypes to get sample working project quickly. In this post I'll describe the steps for doing this.
Test automation shouldn't be a black box between the code and actual results. So, let's dig the code to see how it is made inside
Search
Sunday, 22 February 2015
Aerial: Create New Project Using Archetype
Saturday, 2 February 2013
Sirius: Adding new component Demo
Wednesday, 30 January 2013
Sirius (Java): writing Win32 client library + Live Demo
Recently I described the creation of Win32 server part and at the end I wrote the function which finds the main window by specified attributes and gets the handle for it. This is quite fundamental thing as once we have a handle of the window we can send any messages to it simulating various GUI interaction actions. At the same time the server side library contains only set of functions as Win32 API is all about the set of functions. But it's too raw for writing tests. It's much more convenient to apply some object model to the window objects. So, it requires some effort on the client side. In this article I'll describe the process of Win32 client API creation. I'll create classes interacting with top level windows and create some sample test to demonstrate how that functionality works.
The final output will contain the functionality interacting with top level Win32 windows as well as some demo showing how to work with it.
