-
Notifications
You must be signed in to change notification settings - Fork 35
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Allow users to specify data tables for tests #59
Comments
Would love to see this working. |
Also would like to see an implementation of this by someone else. Care to try? |
Yeah, I'd love to. Also it would be my first open source contribution :) |
I can assure you it will be very welcome and if you'd like it can get you Cheers, On Fri, Jun 24, 2011 at 8:21 PM, wladston <
|
Sure! The college semester hasn't ended yet so things are on a rush now, but I'll set apart some time to create a nice path :) If you like my path, I would be happy to get the commiter status! Pyccuracy is a great project and I'm sure I can learn a lot contributing to it. |
Allow users to specify tests like this:
Given
I go to Login Page
When
I fill the textbox "username" with "<>"
And I fill the textbox "password" with "<>"
Then
I see the div "greeting" contains "Hello <>"
With
| username | password |
| john | nhoj |
| paul | luap |
This would generate two scenarios (one for john and one for paul). It would also replace <> for the given username and <> for the given password.
The text was updated successfully, but these errors were encountered: