Posted by: Brian Knorr on: August 9, 2009
I have just added simple scripting support to UISpec. It allows you to send a String as a script and have it run dynamically. This really opens up the possibility of using UISpec with other languages like Ruby, Java, etc. The following is taken from the documentation found here. UIScript’s goal is to provide a [...]
Posted by: Brian Knorr on: August 4, 2009
Over the weekend I did some work on UISpec…mostly getting the “redo” feature working. Redo let’s you rerun a chained set of queries that will return a result based on what is on the screen right now. Internally the redo feature is being used for traversals and filtering, and I thought it might come in [...]
Posted by: Brian Knorr on: August 4, 2009
Over the weekend I made some small changes to the way traversals work in UISpec. As a result the following method names have changed: descendants is now descendant parents is now parent children is now child Calling these methods return exactly what you would except them to. The method parent finds the parent view, child [...]