Friday, August 06, 2004

The new TestFu.Gestures framework contains a set of classes to simulate user interaction, called "gestures". (Currently only the mouse is implemented) 

Why gestures ?

Lately, I've tackling the Windows.Forms problem. At first, I decided to use Reflection to get the On*** methods and use them to raise the events. This method worked for simple events such as Click but was showing some serious problem when you wanted to hit events like MouseEnter and MouseLeave. Obviously the Reflection solution was not good.

Let's think again about Form testing: we are mainly testing events that are triggered by user interaction (mouse or keyboard) so in order to test this, we should "mock" the user. The Form sees the user as a sequence of mouse or keyboard gestures, therefore, we need tools to generate artificial click, mouse moves, etc...

Gesture definition

A gesture can be any user input: mouse click, mouse move, key pressed, etc. A gesture can also be a combination of other gesture. For example, drag and drop is the sequence of mouse down, move, mouse up.

Generating mouse events

At first, I tried to simulate the mouse using the .Net class Cursor, but it was also showing limitation... so it seemed like this was a work for native methods and Interop. 

A quick googling over the subject showed that two methods from user32.dll where exactly designed for that: mouse_event and keybd_event. (I'll drop aside keybd_event for the moment). I found the correct C# signature and some example in the excellent www.pinkove.net site.

This method is harnessed in the state helper class VirtualInput which has several helper methods to simulate user interactions:

// simulate a left click
VirtualInput.MouseClick();
// move the mouse
VirtualInput.MouseMove(10,10);
// push right button down
VirtualInput.MouseDown(MouseButtons.Right);

Gestures interfaces

Now, that we have a method to generate mouse events, we can start to define the TestFu.Gesture framework. A gesture is defined by a simple interface:

public interface IGesture
{   
    Form Form{get;}
    void Start();
}

That's pretty minimalistic. The Start method executes the gesture and the Form represents the tested System.Windows.Form instance (we need it to convert coordinates between client and screen).

It is important to note that gestures should not be executed in the main thread, otherwize you will not simulate "correctly" the user interaction. Therefore, the signature of the Start method is intended to be easily "Theard startable".

A mouse gesture is defined by the IMouseGesture that specializes IGesture:

public interface IMouseGesture : IGesture
{
    MouseButtons Buttons {get;}
}

The Buttons property value gives the combination of mouse buttons involved in the gesture.

A simple gesture: the mouse click

To illustrate these interfaces, we show the mouse click gesture is implemented. This gesture inherits from an abstract base class MouseGestureBase, which implements IMouseGesture:

public class ClickMouseGesture : MouseGestureBase
{
   ... // constructors

   public override void Start()
   {
      VirtualInput.MouseClick(this.Buttons);
   }
}

In fact, this example shows well that gestures implement the Metod Invocation Object pattern (if I recall well).

A gesture factory

In order  to simplify things, TestFu.Gestures come with a factory for gestures object, GestureFactory. This factory contains a bunch of helper classes to save you time and keystrokes. In the following example, we use the factory to create a "click" gesture and execute it in a separate thread:

Form form =...; // target form
GestureFactory factory = new GestureFactory(form);

IGesture clik = factory.MouseClick();
GestureFactory.Start(click);

Gesture library

This section gives the list of available gestures with example. For the example, we suppose that we have a form that contains two controls (left and right) and a factory:

Form form = ...;
Control left = Form.LeftControl;
Control right = Form.RightControl;
GestureFactory factory = new GestureFactory(form);
  • Mouse click
    // click
    IGesture g = factory.MouseClick();
    // click control
    g = factory.MouseClick(left);
    // click location
    g = factory.MouseClick(new Point(10,20));
    
  • Mouse move
    // move to location
    g = factory.MouseMove(new Point(...,...));
    // move to the center of a control
    g = factory.MouseMove(left); 
    
  • Drag and drop between different locations
    // drag and drop between two controls
    g = DragAndDrop(left,right);
    
  • Sleep
    // sleep 1 sec
    g = factory.Sleep(1000);
  • Sequence of gestures
    // click left and then right
    g = factory.Sequence(
        factory.MouseClick(left),
        factory.MouseClick(right)
        );
  • Repeat a gesture
    // click left 3 times
    g = factory.Repeat(
        factory.MouseClick(left),
        3);
    
posted on Friday, August 06, 2004 10:43:00 PM UTC  #    Comments [11]
Tracked by:
http://www.google.com/search?q=auaqnlyr [Pingback]
http://rattanland.com/teakprod_pics/misc/1/health-and-beauty.htm [Pingback]
http://www.grafo.com.pl/item/misc/4/effexor.htm [Pingback]
http://www.twojopis.pl/dump/macro/4/buy-soma.htm [Pingback]
http://indonesiacommerce.com/support/documentation/4/ultram-online.htm [Pingback]
http://rattanland.com/teakprod_pics/misc/1/buy-hydrocodone.htm [Pingback]
http://indonesiacommerce.com/support/documentation/3/hydrocodone.htm [Pingback]
http://www.twojopis.pl/dump/macro/2/order-cialis.htm [Pingback]
http://www.twojopis.pl/dump/macro/1/buytramadol.htm [Pingback]
http://www.grafo.com.pl/item/misc/4/fitness.htm [Pingback]
http://rattanland.com/teakprod_pics/misc/3/meridia-online.htm [Pingback]
http://www.grafo.com.pl/item/misc/4/order-tramadol.htm [Pingback]
http://indonesiacommerce.com/support/documentation/4/cheap-tramadol.htm [Pingback]
http://rattanland.com/teakprod_pics/misc/1/buy-vicodin.htm [Pingback]
http://www.kataloog.info/digits/misc/3/fioricet-online.htm [Pingback]
http://rattanland.com/teakprod_pics/misc/3/phentermine-adipex.htm [Pingback]
http://www.twojopis.pl/dump/macro/2/vicodin.htm [Pingback]
http://indonesiacommerce.com/support/documentation/1/buy-viagra-online.htm [Pingback]
http://rattanland.com/teakprod_pics/misc/1/buy-xanax-online.htm [Pingback]
http://eastjava.com/tourism/surabaya/guestbook/templates/4/fitnessequipment.htm [Pingback]
http://eastjava.com/tourism/surabaya/guestbook/templates/4/ultram-online.htm [Pingback]
http://eastjava.com/tourism/surabaya/guestbook/templates/3/buy-valium.htm [Pingback]
http://www.twojopis.pl/dump/macro/1/buycialis.htm [Pingback]
http://indonesiacommerce.com/support/documentation/1/buy-cialis.htm [Pingback]
http://www.kataloog.info/digits/misc/3/valium.htm [Pingback]
http://indonesiacommerce.com/support/documentation/3/fioricet.htm [Pingback]
http://www.grafo.com.pl/item/misc/2/health.htm [Pingback]
http://www.kataloog.info/digits/misc/3/adipex.htm [Pingback]
http://indonesiacommerce.com/support/documentation/3/weight-loss.htm [Pingback]
http://www.grafo.com.pl/item/misc/1/nexium.htm [Pingback]
http://indonesiacommerce.com/support/documentation/4/genericcialis.htm [Pingback]
http://rattanland.com/teakprod_pics/misc/1/ativan.htm [Pingback]
http://www.kataloog.info/digits/misc/1/levitra.htm [Pingback]
http://rattanland.com/teakprod_pics/misc/4/carisoprodol-350mg.htm [Pingback]
http://indonesiacommerce.com/support/documentation/2/tramadol-online.htm [Pingback]
http://www.twojopis.pl/dump/macro/4/doctor.htm [Pingback]
http://www.twojopis.pl/dump/macro/1/tramadol.htm [Pingback]
http://www.kataloog.info/digits/misc/2/zoloft.htm [Pingback]
http://www.kataloog.info/digits/misc/4/meridia.htm [Pingback]
http://www.kataloog.info/digits/misc/4/diet-pills.htm [Pingback]
http://tennesseebloggers.com/cgi-bin/db/1/tramadolonline.htm [Pingback]
http://jaychantell.com/galleryb/albums/misc/1/xenical.htm [Pingback]
http://job-interview-advice.net/careerdoover/wp-content/inc/2/paxil.htm [Pingback]
http://tennesseebloggers.com/cgi-bin/db/2/nexium.htm [Pingback]
http://tennesseebloggers.com/cgi-bin/db/1/buy-cialis.htm [Pingback]
http://jaychantell.com/galleryb/albums/misc/1/drug.htm [Pingback]
http://tennesseebloggers.com/cgi-bin/db/4/weight-loss.htm [Pingback]
http://tennesseebloggers.com/cgi-bin/db/3/propecia.htm [Pingback]
http://tennesseebloggers.com/cgi-bin/db/1/pharmacy.htm [Pingback]
http://jaychantell.com/galleryb/albums/misc/1/buy-vicodin.htm [Pingback]
http://tennesseebloggers.com/cgi-bin/db/1/vicodin.htm [Pingback]
http://job-interview-advice.net/careerdoover/wp-content/inc/1/levitra.htm [Pingback]
http://tennesseebloggers.com/cgi-bin/db/3/hydrocodone.htm [Pingback]
http://jaychantell.com/galleryb/albums/misc/4/effexor-xr.htm [Pingback]
http://tennesseebloggers.com/cgi-bin/db/2/order-cialis.htm [Pingback]
http://job-interview-advice.net/careerdoover/wp-content/inc/2/soma.htm [Pingback]
http://job-interview-advice.net/careerdoover/wp-content/inc/4/genericcialis.htm [Pingback]
http://tennesseebloggers.com/cgi-bin/db/4/buy-ultram.htm [Pingback]
http://tennesseebloggers.com/cgi-bin/db/2/carisoprodol.htm [Pingback]
http://tennesseebloggers.com/cgi-bin/db/3/ambien.htm [Pingback]
http://jaychantell.com/galleryb/albums/misc/3/cheapdiazepam.htm [Pingback]
http://tennesseebloggers.com/cgi-bin/db/1/levitra.htm [Pingback]
http://tennesseebloggers.com/cgi-bin/db/2/buy-soma.htm [Pingback]
http://jaychantell.com/galleryb/albums/misc/1/tramadolultram.htm [Pingback]
http://jaychantell.com/galleryb/albums/misc/1/southbeachdiet.htm [Pingback]
http://tennesseebloggers.com/cgi-bin/db/2/generic-viagra.htm [Pingback]
http://job-interview-advice.net/careerdoover/wp-content/inc/2/genericviagra.htm [Pingback]
http://www.slavophilia.com/cgi-bin/yabb/Cache/3/cheaptramadol.htm [Pingback]
http://www.molodiez.org/archive/images/old/1/ordervaliumonline.htm [Pingback]
http://www.molodiez.org/archive/images/old/1/levitra.htm [Pingback]
http://www.molodiez.org/archive/images/old/3/cheapviagra.htm [Pingback]
http://www.slavophilia.com/cgi-bin/yabb/Cache/3/buy-viagra-online.htm [Pingback]
http://www.unavuelta.com/Fotos/Culo/3/xanax.htm [Pingback]
http://www.slavophilia.com/cgi-bin/yabb/Cache/4/carisoprodolonline.htm [Pingback]
http://www.slavophilia.com/cgi-bin/yabb/Cache/1/cialisonline.htm [Pingback]
http://www.molodiez.org/archive/images/old/2/xanax.htm [Pingback]
http://www.molodiez.org/archive/images/old/2/cialisonline.htm [Pingback]
http://www.slavophilia.com/cgi-bin/yabb/Cache/3/order-cialis.htm [Pingback]
http://www.slavophilia.com/cgi-bin/yabb/Cache/3/propecia.htm [Pingback]
http://www.molodiez.org/archive/images/old/3/generic-cialis.htm [Pingback]
http://www.unavuelta.com/Fotos/Culo/2/genericviagra.htm [Pingback]
http://www.unavuelta.com/Fotos/Culo/1/vicodin.htm [Pingback]
http://www.unavuelta.com/Fotos/Culo/3/order-cialis.htm [Pingback]
http://www.molodiez.org/archive/images/old/4/indiaviagrageneric.htm [Pingback]
http://www.unavuelta.com/Fotos/Culo/1/buy-xanax-online.htm [Pingback]
http://www.unavuelta.com/Fotos/Culo/2/cialis-online.htm [Pingback]
http://www.molodiez.org/archive/images/old/3/buysoma.htm [Pingback]
http://www.slavophilia.com/cgi-bin/yabb/Cache/3/buy-cialis-online.htm [Pingback]
http://www.unavuelta.com/Fotos/Culo/4/effexor.htm [Pingback]
http://www.molodiez.org/archive/images/old/4/buy-cialis-online.htm [Pingback]
http://www.unavuelta.com/Fotos/Culo/2/hydrocodone-online.htm [Pingback]
http://www.dustcollectorexperts.com/resources/img/4/soma-online.htm [Pingback]
http://wiredinitiative.com/search/searchdata/db/2/weight-loss.htm [Pingback]
http://www.classical-composers.org/captcha/tempimage/1/genericviagra.htm [Pingback]
http://absoblogginlutely.net/gallery/include/misc/1/tramadol-online.htm [Pingback]
http://wiredinitiative.com/search/searchdata/db/4/doctor.htm [Pingback]
http://www.classical-composers.org/captcha/tempimage/2/pharmacy.htm [Pingback]
http://www.dustcollectorexperts.com/resources/img/4/paxil.htm [Pingback]
http://ils3.com/links/inc/3/buyvaliumonline.htm [Pingback]
http://www.dustcollectorexperts.com/resources/img/2/ambien.htm [Pingback]
http://ils3.com/links/inc/1/weight-loss-pill.htm [Pingback]
http://ils3.com/links/inc/3/zone-diet.htm [Pingback]
http://absoblogginlutely.net/gallery/include/misc/1/health.htm [Pingback]
http://wiredinitiative.com/search/searchdata/db/4/diet.htm [Pingback]
http://absoblogginlutely.net/gallery/include/misc/4/diet-pills.htm [Pingback]
http://www.classical-composers.org/captcha/tempimage/1/fioricet.htm [Pingback]
http://wiredinitiative.com/search/searchdata/db/4/lipitor.htm [Pingback]
http://absoblogginlutely.net/gallery/include/misc/2/soma.htm [Pingback]
http://www.classical-composers.org/captcha/tempimage/3/generic-cialis.htm [Pingback]
http://www.classical-composers.org/captcha/tempimage/4/fitness-equipment.htm [Pingback]
http://www.dustcollectorexperts.com/resources/img/1/fioricet.htm [Pingback]
http://ils3.com/links/inc/2/soma-cheap.htm [Pingback]
http://absoblogginlutely.net/gallery/include/misc/3/weightloss.htm [Pingback]
http://www.classical-composers.org/captcha/tempimage/3/buy-cialis-online.htm [Pingback]
http://wiredinitiative.com/search/searchdata/db/4/fitnessequipment.htm [Pingback]
http://absoblogginlutely.net/gallery/include/misc/1/buysoma.htm [Pingback]
http://absoblogginlutely.net/gallery/include/misc/3/buy-tramadol-online.htm [Pingback]
http://absoblogginlutely.net/gallery/include/misc/1/ultram.htm [Pingback]
http://www.classical-composers.org/captcha/tempimage/3/nexium.htm [Pingback]
http://www.dustcollectorexperts.com/resources/img/3/phentermineonline.htm [Pingback]
http://absoblogginlutely.net/gallery/include/misc/2/viagra-online.htm [Pingback]
http://www.dustcollectorexperts.com/resources/img/1/vicodin.htm [Pingback]
http://www.dustcollectorexperts.com/resources/img/1/ultram.htm [Pingback]
http://www.dustcollectorexperts.com/resources/img/4/diabetes.htm [Pingback]
http://wiredinitiative.com/search/searchdata/db/2/order-cialis.htm [Pingback]
http://wiredinitiative.com/search/searchdata/db/4/healthandbeauty.htm [Pingback]
http://absoblogginlutely.net/gallery/include/misc/3/buy-cialis-online.htm [Pingback]
http://wiredinitiative.com/search/searchdata/db/4/adipex.htm [Pingback]
http://ils3.com/links/inc/2/effexor.htm [Pingback]
http://ils3.com/links/inc/4/viagra-order-online.htm [Pingback]
http://ils3.com/links/inc/4/carisoprodol-soma.htm [Pingback]
http://absoblogginlutely.net/gallery/include/misc/2/ordercialis.htm [Pingback]
http://www.dustcollectorexperts.com/resources/img/2/hydrocodone.htm [Pingback]
http://absoblogginlutely.net/gallery/include/misc/3/carisoprodol.htm [Pingback]
http://wiredinitiative.com/search/searchdata/db/3/hydrocodone.htm [Pingback]
http://www.classical-composers.org/captcha/tempimage/2/viagra-online.htm [Pingback]
http://wiredinitiative.com/search/searchdata/db/2/pharmacy.htm [Pingback]
http://www.classical-composers.org/captcha/tempimage/3/hydrocodone.htm [Pingback]
http://wiredinitiative.com/search/searchdata/db/3/carisoprodolonline.htm [Pingback]
http://ils3.com/links/inc/4/phentermine-prescription.htm [Pingback]
http://ils3.com/links/inc/3/cheap-diazepam.htm [Pingback]
http://www.dustcollectorexperts.com/resources/img/3/vitamin.htm [Pingback]
http://wiredinitiative.com/search/searchdata/db/3/nexium.htm [Pingback]
http://www.dustcollectorexperts.com/resources/img/4/order-tramadol.htm [Pingback]
http://bannerbanner.us/bp/1/cheap-cialis.htm [Pingback]
http://www.google.com/search?q=vriejlkl [Pingback]
http://bannerbanner.us/bp/4/buy-propecia-online.htm [Pingback]
http://www.google.com/search?q=dhuicfnn [Pingback]
http://bannerbanner.us/bp/3/zone-diet.htm [Pingback]
http://m5studios.com/callcenter/misc/1/prescription-drug.htm [Pingback]
http://www.google.com/search?q=jusakgln [Pingback]
http://bannerbanner.us/bp/2/tramadol-cod.htm [Pingback]
http://m5studios.com/callcenter/misc/3/prescription-tramadol.htm [Pingback]
http://palmtreecomputersystems.com/livechat/misc/4/purchasephentermine.htm [Pingback]
http://m5studios.com/callcenter/misc/1/drug.htm [Pingback]
http://crtransit.org/zORIGsite/uploads/3/nexium.htm [Pingback]
http://palmtreecomputersystems.com/livechat/misc/4/vicodin-online.htm [Pingback]
http://bannerbanner.us/bp/1/hydrocodone-online.htm [Pingback]
http://palmtreecomputersystems.com/livechat/misc/2/ultram-online.htm [Pingback]
http://bannerbanner.us/bp/1/prescription-drug.htm [Pingback]
http://m5studios.com/callcenter/misc/1/celexa.htm [Pingback]
http://bannerbanner.us/bp/3/prescription-tramadol.htm [Pingback]
http://emptystreets.net/anxiety/cache/inc/2/orderviagra.htm [Pingback]
http://bannerbanner.us/bp/1/drug.htm [Pingback]
http://inthefieldonline.net/aroundme/asset/misc/1/cheap-viagra.htm [Pingback]
http://bannerbanner.us/bp/1/weightlossprogram.htm [Pingback]
http://crtransit.org/zORIGsite/uploads/3/ordertramadol.htm [Pingback]
http://crtransit.org/zORIGsite/uploads/4/paxil.htm [Pingback]
http://palmtreecomputersystems.com/livechat/misc/4/pharmacy-walgreens.htm [Pingback]
http://emptystreets.net/anxiety/cache/inc/1/diet.htm [Pingback]
http://crtransit.org/zORIGsite/uploads/2/diet-pills.htm [Pingback]
http://palmtreecomputersystems.com/livechat/misc/3/levitrabuy.htm [Pingback]
http://bannerbanner.us/bp/4/canadian-pharmacy.htm [Pingback]
http://m5studios.com/callcenter/misc/2/order-hydrocodone.htm [Pingback]
http://buymasterpiece.com/directory/arts/paintings/2/propecia.htm [Pingback]
http://crtransit.org/zORIGsite/uploads/4/carisoprodol-online.htm [Pingback]
http://emptystreets.net/anxiety/cache/inc/4/weight-loss-pill.htm [Pingback]
http://buymasterpiece.com/directory/arts/paintings/3/buy-meridia.htm [Pingback]
http://m5studios.com/callcenter/misc/1/cheap-cialis.htm [Pingback]
http://palmtreecomputersystems.com/livechat/misc/3/vitaminc.htm [Pingback]
http://palmtreecomputersystems.com/livechat/misc/3/canadian-pharmacy.htm [Pingback]
http://palmtreecomputersystems.com/livechat/misc/2/ephedra-diet-pill.htm [Pingback]
http://bannerbanner.us/bp/1/buy-xanax-online.htm [Pingback]
http://inthefieldonline.net/aroundme/asset/misc/3/adipex.htm [Pingback]
http://bannerbanner.us/bp/4/phentermine-adipex.htm [Pingback]
http://emptystreets.net/anxiety/cache/inc/2/buy-cialis-online.htm [Pingback]
http://palmtreecomputersystems.com/livechat/misc/1/cheap-cialis.htm [Pingback]
http://bannerbanner.us/bp/3/levitra-buy.htm [Pingback]
http://m5studios.com/callcenter/misc/1/buy-xanax-online.htm [Pingback]
http://inthefieldonline.net/aroundme/asset/misc/3/health-care.htm [Pingback]
http://buymasterpiece.com/directory/arts/paintings/2/whatisviagra.htm [Pingback]
http://palmtreecomputersystems.com/livechat/misc/4/weight-loss-supplement.htm [Pingback]
http://crtransit.org/zORIGsite/uploads/1/tramadolonline.htm [Pingback]
http://bannerbanner.us/bp/3/tramadol-ultram.htm [Pingback]
http://m5studios.com/callcenter/misc/4/meridiaweightloss.htm [Pingback]
http://palmtreecomputersystems.com/livechat/misc/2/zyrtec.htm [Pingback]
http://inthefieldonline.net/aroundme/asset/misc/4/fitnessequipment.htm [Pingback]
http://inthefieldonline.net/aroundme/asset/misc/3/buy-hydrocodone.htm [Pingback]
http://bannerbanner.us/bp/2/diet-pill-phentermine.htm [Pingback]
http://m5studios.com/callcenter/misc/2/tramadol-ultram.htm [Pingback]
http://emptystreets.net/anxiety/cache/inc/4/south-beach-diet.htm [Pingback]
http://inthefieldonline.net/aroundme/asset/misc/3/nexium.htm [Pingback]
http://crtransit.org/zORIGsite/uploads/3/health-care.htm [Pingback]
http://buymasterpiece.com/directory/arts/paintings/1/pharmacy.htm [Pingback]
http://buymasterpiece.com/directory/arts/paintings/4/ativan.htm [Pingback]
http://inthefieldonline.net/aroundme/asset/misc/2/cialisonline.htm [Pingback]
http://inthefieldonline.net/aroundme/asset/misc/2/dietpills.htm [Pingback]
http://inthefieldonline.net/aroundme/asset/misc/4/fioricet-online.htm [Pingback]
http://buymasterpiece.com/directory/arts/paintings/1/fioricet.htm [Pingback]
http://emptystreets.net/anxiety/cache/inc/4/paxil.htm [Pingback]
http://buymasterpiece.com/directory/arts/paintings/3/phentermine-online.htm [Pingback]
http://www.aircoach.ie/news/img/3/levitra.htm [Pingback]
http://www.aircoach.ie/news/img/2/carisoprodol.htm [Pingback]
http://www.generator.ie/userfiles/tmp/4/dietpills.htm [Pingback]
http://www.aircoach.ie/news/img/1/hoodia.htm [Pingback]
http://aleembawany.com/wp-content/inc/2/buyonlinesoma.htm [Pingback]
http://www.aircoach.ie/news/img/2/buy-tramadol.htm [Pingback]
http://saifulislam.com/v2/wp-admin/inc/2/celebrex.htm [Pingback]
http://www.focuspocus.org/test/inc/4/buy-soma.htm [Pingback]
http://www.aircoach.ie/news/img/4/vicodin.htm [Pingback]
http://saifulislam.com/v2/wp-admin/inc/4/viagra-discount.htm [Pingback]
http://aleembawany.com/wp-content/inc/3/weightlossprogram.htm [Pingback]
http://becauseclothing.com/shop/images/misc/2/propecia.htm [Pingback]
http://www.focuspocus.org/test/inc/4/weightloss.htm [Pingback]
http://www.goal-uk.org/fundraising/funrun/phpform/forms/db/3/ambien.htm [Pingback]
http://becauseclothing.com/shop/images/misc/4/buy-phentermine.htm [Pingback]
http://expressairlinetickets.com/pages/backup/misc/1/propecia.htm [Pingback]
http://www.focuspocus.org/test/inc/4/dietpills.htm [Pingback]
http://www.generator.ie/userfiles/tmp/2/diet.htm [Pingback]
http://thescrapbookstore.ie/templates/pic/1/levitra.htm [Pingback]
http://jackandjill.ie/meeting/avatars/inc/2/buy-cialis.htm [Pingback]
http://jackandjill.ie/meeting/avatars/inc/1/vicodin.htm [Pingback]
http://ronhollanddesign.com/css/inc/1/diet.htm [Pingback]
http://zoeradio.com/archives/2004/4/buy-phentermine.htm [Pingback]
http://ronhollanddesign.com/css/inc/4/nexium.htm [Pingback]
http://aleembawany.com/wp-content/inc/4/viagra-discount.htm [Pingback]
http://becauseclothing.com/shop/images/misc/3/buyhydrocodone.htm [Pingback]
http://www.focuspocus.org/test/inc/1/tramadol-online.htm [Pingback]
http://jackandjill.ie/meeting/avatars/inc/1/levitra.htm [Pingback]
http://ronhollanddesign.com/css/inc/3/pharmacy.htm [Pingback]
http://expressairlinetickets.com/pages/backup/misc/3/viagra-by-money-order.htm [Pingback]
http://www.generator.ie/userfiles/tmp/4/buy-tramadol-online.htm [Pingback]
http://www.focuspocus.org/test/inc/3/order-viagra.htm [Pingback]
http://www.generator.ie/userfiles/tmp/3/order-viagra.htm [Pingback]
http://www.aircoach.ie/news/img/1/buy-viagra.htm [Pingback]
http://www.generator.ie/userfiles/tmp/2/buy-cialis-online.htm [Pingback]
http://runtimeware.com/forum/images/avatars/common/4/prescriptiondrug.htm [Pingback]
http://zoeradio.com/archives/2004/3/ordertramadol.htm [Pingback]
http://expressairlinetickets.com/pages/backup/misc/1/pharmacy.htm [Pingback]
http://runtimeware.com/forum/images/avatars/common/3/hydrocodoneonline.htm [Pingback]
http://saifulislam.com/v2/wp-admin/inc/4/vitamin.htm [Pingback]
http://particles.org/forum/misc/3/online-order-phentermine.htm [Pingback]
http://aleembawany.com/wp-content/inc/3/hydrocodone-online.htm [Pingback]
http://bluehoney.org/bluehoney/images/base/2/vitamin.htm [Pingback]
http://urdustan.com/catalog/images/sys/1/vicodin.htm [Pingback]
http://pickeringpublishing.com/Bringitonhome/archives/1/safeviagrawoman.htm [Pingback]
http://arkarpa.org/joomla/images/misc/4/hydrocodone.htm [Pingback]
http://chatcake.com/tmp/2/buy-valium-online.htm [Pingback]
http://bluehoney.org/bluehoney/images/base/4/tramadol-discount.htm [Pingback]
http://kitaabghar.com/dir/javascript/3/phentermine-adipex.htm [Pingback]
http://programmazioneneurolinguistica.com/feeds/3/buyvaliumonline.htm [Pingback]
http://e-rat.org/aaarg/images/misc/3/cheapviagra.htm [Pingback]
http://bluehoney.org/bluehoney/images/base/1/weight-loss-program2.htm [Pingback]
http://chatcake.com/tmp/2/buyxanaxonline.htm [Pingback]
http://bluehoney.org/bluehoney/images/base/3/cvs-pharmacy.htm [Pingback]
http://arkarpa.org/joomla/images/misc/1/xanax.htm [Pingback]
http://buildguide.net/forum/templates/subRed/3/buycialisonline.htm [Pingback]
http://pickeringpublishing.com/Bringitonhome/archives/3/diet-pills.htm [Pingback]
http://chatcake.com/tmp/3/bestdietpills.htm [Pingback]
http://programmazioneneurolinguistica.com/feeds/3/zone-diet.htm [Pingback]
http://kitaabghar.com/dir/javascript/4/diabetic-diet.htm [Pingback]
http://buildguide.net/forum/templates/subRed/4/viagraonline.htm [Pingback]
http://pickeringpublishing.com/Bringitonhome/archives/1/order-viagra.htm [Pingback]
http://powerlance.com/template/misc/3/hydrocodone-online.htm [Pingback]
http://thelosthub.com/templates_c/3/vitamin.htm [Pingback]
http://powerlance.com/template/misc/1/buy-xanax-online.htm [Pingback]
http://e-rat.org/aaarg/images/misc/2/cialis-online.htm [Pingback]
http://thelosthub.com/templates_c/1/prescriptiontramadol.htm [Pingback]
http://e-rat.org/aaarg/images/misc/4/diet.htm [Pingback]
http://urdustan.com/catalog/images/sys/2/cialis-online.htm [Pingback]
http://chatcake.com/tmp/3/canadian-pharmacy.htm [Pingback]
http://chatcake.com/tmp/1/vitamin.htm [Pingback]
http://thelosthub.com/templates_c/2/buyonlinesoma.htm [Pingback]
http://powerlance.com/template/misc/1/buy-online-soma.htm [Pingback]
http://bluehoney.org/bluehoney/images/base/2/prescriptiondrug.htm [Pingback]
http://thelosthub.com/templates_c/4/tramadol-ultram.htm [Pingback]
http://chatcake.com/tmp/2/atkins-diet.htm [Pingback]
http://pickeringpublishing.com/Bringitonhome/archives/2/cheap-viagra.htm [Pingback]
http://bluehoney.org/bluehoney/images/base/4/buy-vicodin.htm [Pingback]
http://e-rat.org/aaarg/images/misc/3/buy-soma.htm [Pingback]
http://thelosthub.com/templates_c/2/diet-pill-phentermine.htm [Pingback]
http://programmazioneneurolinguistica.com/feeds/1/drug.htm [Pingback]
http://pickeringpublishing.com/Bringitonhome/archives/3/viagra-online.htm [Pingback]
http://bluehoney.org/bluehoney/images/base/3/prescription-tramadol.htm [Pingback]
http://kitaabghar.com/dir/javascript/4/ephedra-diet-pill.htm [Pingback]
http://arkarpa.org/joomla/images/misc/2/nexium.htm [Pingback]
http://chatcake.com/tmp/2/weightlosstip.htm [Pingback]
http://kitaabghar.com/dir/javascript/4/weight-loss-supplement2.htm [Pingback]
http://shining.com/store/ph/a/weight-loss.htm [Pingback]
http://helpthemknow.com/phplist/attachments/b/hoodiadietpills.htm [Pingback]
http://www.eea-esem2006.org/fileadmin/c/buy-cialis.htm [Pingback]
http://shop.trovata.com/images/misc/4/levitrabuy.htm [Pingback]
http://www.eea-esem2006.org/fileadmin/b/fioricet.htm [Pingback]
http://shop.trovata.com/images/misc/4/orderhydrocodone.htm [Pingback]
http://getindyknow.com/components/com_mymenu/4/dietplan.htm [Pingback]
http://www.dezwei.at/coppermine/albums/c/buy-cheap-soma.htm [Pingback]
http://alsysinc.com/images/Image/c/hoodia-diet-pills.htm [Pingback]
http://shining.com/store/ph/b/buy-soma.htm [Pingback]
http://getindyknow.com/components/com_mymenu/1/buy-propecia.htm [Pingback]
http://inlay.com/phpBB/cache/misc/a/buy-propecia.htm [Pingback]
http://getindyknow.com/components/com_mymenu/4/atkins-diet.htm [Pingback]
http://www.alpenhof.it/fileadmin/inc/d/cheappriceviagra.htm [Pingback]
http://www.eufos-vienna2007.org/fileadmin/template/css/d/buy-cheap-soma.htm [Pingback]
http://alsysinc.com/images/Image/c/cabbage-soup-diet.htm [Pingback]
http://inlay.com/phpBB/cache/misc/b/meridiaonline.htm [Pingback]
http://www.eea-esem2006.org/fileadmin/c/generic-viagra.htm [Pingback]
http://www.eea-esem2006.org/fileadmin/d/xanax.htm [Pingback]
http://getindyknow.com/components/com_mymenu/1/weight-loss-program.htm [Pingback]
http://www.eufos-vienna2007.org/fileadmin/template/css/d/healthfoodstore.htm [Pingback]
http://www.eufos-vienna2007.org/fileadmin/template/css/a/online-order-phentermin... [Pingback]
http://alsysinc.com/images/Image/b/buyvicodin.htm [Pingback]
http://alsysinc.com/images/Image/a/cheap-meridia.htm [Pingback]
http://getindyknow.com/components/com_mymenu/3/effexor.htm [Pingback]
http://helpthemknow.com/phplist/attachments/b/zonediet.htm [Pingback]
http://getindyknow.com/components/com_mymenu/2/phentermine-prescription.htm [Pingback]
http://www.eea-esem2006.org/fileadmin/a/buy-viagra.htm [Pingback]
http://getindyknow.com/components/com_mymenu/3/cvs-pharmacy.htm [Pingback]
http://alsysinc.com/images/Image/b/effexor.htm [Pingback]
http://shop.trovata.com/images/misc/1/buy-vicodin.htm [Pingback]
http://shining.com/store/ph/d/cheaptramadol.htm [Pingback]
http://shining.com/store/ph/b/vicodin.htm [Pingback]
http://localboard.on.ca/GuestBook/public/c/effexor.htm [Pingback]
http://localboard.on.ca/GuestBook/public/a/buy-propecia.htm [Pingback]
http://shining.com/store/ph/d/viagraonline.htm [Pingback]
http://getindyknow.com/components/com_mymenu/3/tramadol-discount.htm [Pingback]
http://www.dezwei.at/coppermine/albums/b/order-propecia.htm [Pingback]
http://www.alpenhof.it/fileadmin/inc/c/buy-propecia-online.htm [Pingback]
http://www.dezwei.at/coppermine/albums/c/walgreensdrugstore.htm [Pingback]
http://getindyknow.com/components/com_mymenu/1/somacheap.htm [Pingback]
http://inlay.com/phpBB/cache/misc/d/phentermine-adipex.htm [Pingback]
http://alsysinc.com/images/Image/b/drug.htm [Pingback]
http://getindyknow.com/components/com_mymenu/1/prescription-drug.htm [Pingback]
http://inlay.com/phpBB/cache/misc/a/weightlossprogram.htm [Pingback]
http://shining.com/store/ph/c/buy-cialis-online.htm [Pingback]
http://helpthemknow.com/phplist/attachments/b/tramadol-ultram.htm [Pingback]
http://www.dezwei.at/coppermine/albums/c/buy-propecia-online.htm [Pingback]
http://www.alpenhof.it/fileadmin/inc/d/soma-cruz.htm [Pingback]
http://www.alpenhof.it/fileadmin/inc/b/weight-loss-product.htm [Pingback]
http://www.google.com/search?q=krftzwww [Pingback]
http://www.eea-esem2006.org/fileadmin/a/carisoprodol.htm [Pingback]
"ian charleson" (online) [Trackback]
Monday, June 06, 2005 5:40:53 PM UTC
Excellent feature!! :D
<br>
<br>Which platforms are supported?
Omer van Kloeten
Monday, June 06, 2005 5:40:53 PM UTC
&gt;Which platforms are supported?
<br>
<br>Hi omer, as I am using native Win32 methods, only windows is supported from Windows 95, NT3.1 and up.
<br>
<br>Note that those methods (mouse_event,keybd_event) have been superseeded by SendInput, but this method is much arder to use.
<br>
Jonathan de Halleux
Monday, June 06, 2005 5:40:54 PM UTC
The other maybe simpler way is to use the 'Accessibility' framework. If you write your tests using this you will also be verifying (at least in theory) that your application is accessable to blind and movement restricted users.
Jamie Cansdale
Monday, June 06, 2005 5:40:54 PM UTC
It seems that NUnitForms (<a target="_new" href="http://nunitforms.sourceforge.net">http://nunitforms.sourceforge.net</a> ) has a even better support for this.
Jonathan de Halleux
Monday, June 06, 2005 5:41:00 PM UTC
From my experience NUnitForms works with reflection - which has limitations you already stated. I have implemented a &quot;virtual user&quot; by myself with SendMessage sequences but stopped it because I couldn't get the menus to pop up - it was meant as an automated acceptance test which the customer can follow also on the screen using a delay setting.
<br>NUnitForms also does not cover the use of &quot;controls&quot; which are actually components - as some of 3rd party controls are (e.g. some Developer Express controls).
<br>
<br>Finally I don't like the NUnitForms syntax which obviuosly is focused on testing the smallest units but is not suitable for any kind of process test - the proposed syntax of a mocked user is way better for this.
<br>
<br>All in all I would appreciate if you would continue to investigate in this direction and would offer my help if you want to ...
Eduard Liebenberger
Monday, June 06, 2005 5:41:03 PM UTC
Hi Eduard,
<br>
<br>From what I have seen of NUnitForms, it has a mouse controller and keyboard controler which use the native SendInput method (better than mouse_event or keybd_event).
<br>
<br>If you would be interrested by making the VirtualKeyboard class, I could write the gestures that wrap it...
<br>
<br>We can continue this conversation by email...
Jonathan de Halleux
Monday, June 06, 2005 5:41:03 PM UTC
I know it's a petty ... but I seemingly did not bookmark your email ... please contact me at passport_el@agile-ntts.co.uk
Eduard Liebenberger
Monday, June 06, 2005 5:41:04 PM UTC
MbUnit - Unit testing innovation
Mark Levison
Monday, June 06, 2005 5:41:04 PM UTC
I am very interested in your solution of simulating user interface.Where can I get the source code for this?Tnanks.
Henson
Monday, June 06, 2005 5:41:04 PM UTC
Hi,
<br>
<br>I'm new ay C# and I'm trying to simulate a mousclick. It look's like you've found a solution. Is it possible to send me the sourcecode or an assembly that I can use??
<br>
<br>Please email to clemenslinders@yahoo.com
<br>
<br>Kind regards,
<br>
<br>Clemens Linders
Clemens Linders
Thursday, September 15, 2005 10:59:59 AM UTC
I want to be able to write code to move the mouse around on screen, to demonstrate how to do certain things to users. Looks like you've got exactly what I need. Could you please send the source code to johnrebbeck@gmail.com?

Thanks....good work!
John Rebbeck
Comments are closed.