Created
April 29, 2013 06:58
-
-
Save karlkfi/5480124 to your computer and use it in GitHub Desktop.
BAS action chain.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
@page (domain = "domain.com") | |
(path = "/email-form/") { | |
status-code: 200; | |
input.email { | |
text: set("[email protected]"); | |
} | |
input.submit:click() { | |
status-code: 200; | |
@import("./next-page-sheet.bas") | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Oh, and I posted an issue over here: cgiffard/Behaviour-Assertion-Sheets#1