summaryrefslogtreecommitdiffstats
path: root/remote/test/puppeteer/test/assets/credit-card.html
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--remote/test/puppeteer/test/assets/credit-card.html42
1 files changed, 42 insertions, 0 deletions
diff --git a/remote/test/puppeteer/test/assets/credit-card.html b/remote/test/puppeteer/test/assets/credit-card.html
new file mode 100644
index 0000000000..101013a0ca
--- /dev/null
+++ b/remote/test/puppeteer/test/assets/credit-card.html
@@ -0,0 +1,42 @@
+<!DOCTYPE html>
+<html>
+
+<head>
+ <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
+</head>
+
+<body>
+ <form id="testform" method="post">
+ <table>
+ <tbody>
+ <tr>
+ <td>
+ <label for="name">Name on Card</label>
+ </td>
+ <td>
+ <input size="40" id="name" />
+ </td>
+ </tr>
+ <tr>
+ <td>
+ <label for="number">Card Number</label>
+ </td>
+ <td>
+ <input size="40" id="number" name="card_number" />
+ </td>
+ </tr>
+ <tr>
+ <td>
+ <label>Expiration Date</label>
+ </td>
+ <td>
+ <input size="2" id="expiration_month" name="ccmonth"> <input size="4" id="expiration_year"
+ name="ccyear" />
+ </td>
+ </tr>
+ </tbody>
+ </table>
+ <input type="submit" value="Submit">
+ </form>
+</body>
+</html> \ No newline at end of file