mirror of
https://github.com/unitedstates/contact-congress.git
synced 2025-12-19 09:27:29 -05:00
107 lines
3.2 KiB
YAML
107 lines
3.2 KiB
YAML
bioguide: W000815
|
|
contact_form:
|
|
method: post
|
|
action: "/forms/writeyourrep/"
|
|
steps:
|
|
- visit: "http://wenstrup.house.gov/contact/"
|
|
- find:
|
|
- selector: "form.zipform"
|
|
- fill_in:
|
|
- name: zip5
|
|
selector: "form.zipform input[name='zip5']"
|
|
value: $ADDRESS_ZIP5
|
|
required: true
|
|
- name: zip4
|
|
selector: "form.zipform input[name='zip4']"
|
|
value: $ADDRESS_ZIP4
|
|
required: true
|
|
- click_on:
|
|
- value: Submit
|
|
selector: "form.zipform input[type='submit'][value='Submit']"
|
|
- find:
|
|
- selector: "#aspnetForm"
|
|
- fill_in:
|
|
- name: ctl00$ctl13$FirstName
|
|
selector: "#ctl00_ctl13_FirstName"
|
|
value: $NAME_FIRST
|
|
required: true
|
|
- name: ctl00$ctl13$LastName
|
|
selector: "#ctl00_ctl13_LastName"
|
|
value: $NAME_LAST
|
|
required: true
|
|
- name: ctl00$ctl13$Street
|
|
selector: "#ctl00_ctl13_Street"
|
|
value: $ADDRESS_STREET
|
|
required: true
|
|
- name: ctl00$ctl13$City
|
|
selector: "#ctl00_ctl13_City"
|
|
value: $ADDRESS_CITY
|
|
required: true
|
|
- name: ctl00$ctl13$Zip
|
|
selector: "#ctl00_ctl13_Zip"
|
|
value: $ADDRESS_ZIP5
|
|
required: true
|
|
- name: ctl00$ctl13$Phone
|
|
selector: "#ctl00_ctl13_Phone"
|
|
value: $PHONE
|
|
required: false
|
|
- name: ctl00$ctl13$Email
|
|
selector: "#ctl00_ctl13_Email"
|
|
value: $EMAIL
|
|
required: true
|
|
- name: ctl00$ctl13$Subject
|
|
selector: "#ctl00_ctl13_Subject"
|
|
value: $SUBJECT
|
|
required: true
|
|
- name: ctl00$ctl13$Body
|
|
selector: "#ctl00_ctl13_Body"
|
|
value: $MESSAGE
|
|
required: true
|
|
- select:
|
|
- name: ctl00$ctl13$PrefixList
|
|
selector: "#ctl00_ctl13_PrefixList"
|
|
value: $NAME_PREFIX
|
|
required: true
|
|
options:
|
|
- Mr.
|
|
- Mrs.
|
|
- Dr.
|
|
- Ms.
|
|
- name: ctl00$ctl13$IssuesList
|
|
selector: "#ctl00_ctl13_IssuesList"
|
|
value: $TOPIC
|
|
required: true
|
|
options:
|
|
Agriculture: "99479"
|
|
Defense and National Security: "99480"
|
|
Education: "99481"
|
|
Energy: "99482"
|
|
Health Care: "99483"
|
|
Jobs and the Economy: "99484"
|
|
Other: "107327"
|
|
Pro-Life and Family Issues: "99485"
|
|
Second Amendment Rights: "99489"
|
|
"Social Security & Medicare": "99486"
|
|
Spending and Fiscal Issues: "99487"
|
|
Taxes: "99488"
|
|
Veterans: "99490"
|
|
- check:
|
|
- name: ctl00$ctl13$ReplyChoice
|
|
selector: "#ctl00_ctl13_ReplyChoice_0"
|
|
value: Respond
|
|
- javascript:
|
|
- value: document.querySelector("#ctl00_ctl13_Body").value = document.querySelector("#ctl00_ctl13_Body").value.replace(/"/g, '');
|
|
- recaptcha:
|
|
- value: true
|
|
- click_on:
|
|
- value: Submit
|
|
selector: "#ctl00_ctl13_SubmitButton"
|
|
- find:
|
|
- selector: "#ctl00_ctl13_ConfirmationText"
|
|
success:
|
|
headers:
|
|
status: 302
|
|
body:
|
|
contains: "Thank you for taking the time to write me"
|
|
|