Are there any test data generator tools which can be used with selenium/Nunit?
        Posted  
        
            by Jon
        on Stack Overflow
        
        See other posts from Stack Overflow
        
            or by Jon
        
        
        
        Published on 2010-05-25T12:33:33Z
        Indexed on 
            2010/06/01
            22:23 UTC
        
        
        Read the original article
        Hit count: 222
        
Hi, I was wondering if there was anything that provides test data for injecting into Nunit tests?
I'm sure I came across something recently that does this but I couldn't find it again. Basically the idea is that I could use selenium and Nunit to create new customers within the system automatically.
So I could have selenium type in customer names generated from test generator (the < DataGenerator > is just an imaginary class): e.g.
dim sFirstName as string = < DataGenerator >.GetRandomFirstName()
dim sLastName as string = < DataGenerator >.GetRandomLastName()
selenium.type("firstname_field",sFirstName)
selenium.type("lastname_field",sLastName )
I've already seen SQLDataGenerator from Redgate which has a cmd line wrapper class, but I was wondering if there was anything else.
© Stack Overflow or respective owner