Permalink
Cannot retrieve contributors at this time
Name already in use
A tag already exists with the provided branch name. Many Git commands accept both tag and branch names, so creating this branch may cause unexpected behavior. Are you sure you want to create this branch?
contact-congress/members/R000577.yaml
Go to fileThis commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
183 lines (182 sloc)
4.71 KB
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
bioguide: R000577 | |
contact_form: | |
method: get | |
action: /forms/writeyourrep/ | |
steps: | |
- visit: "http://timryanforms.house.gov/contact/" | |
- 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: "#ctl00_ctl22_FirstName" | |
- fill_in: | |
- name: ctl00$ctl22$FirstName | |
selector: "#ctl00_ctl22_FirstName" | |
value: $NAME_FIRST | |
required: true | |
- name: ctl00$ctl22$LastName | |
selector: "#ctl00_ctl22_LastName" | |
value: $NAME_LAST | |
required: true | |
- name: ctl00$ctl22$Street | |
selector: "#ctl00_ctl22_Street" | |
value: $ADDRESS_STREET | |
required: true | |
- name: ctl00$ctl22$City | |
selector: "#ctl00_ctl22_City" | |
value: $ADDRESS_CITY | |
required: true | |
- name: ctl00$ctl22$Zip | |
selector: "#ctl00_ctl22_Zip" | |
value: $ADDRESS_ZIP5 | |
required: true | |
- name: ctl00$ctl22$Phone | |
selector: "#ctl00_ctl22_Phone" | |
value: $PHONE | |
required: true | |
- name: ctl00$ctl22$Email | |
selector: "#ctl00_ctl22_Email" | |
value: $EMAIL | |
required: true | |
- name: ctl00$ctl22$Subject | |
selector: "#ctl00_ctl22_Subject" | |
value: $SUBJECT | |
required: true | |
- name: ctl00$ctl22$Body | |
selector: "#ctl00_ctl22_Body" | |
value: $MESSAGE | |
required: true | |
- choose: | |
- name: ctl00$ctl22$ReplyChoice | |
selector: "#ctl00_ctl22_ReplyChoice_0" | |
value: "Respond" | |
- select: | |
- name: ctl00$ctl22$PrefixList | |
selector: "#ctl00_ctl22_PrefixList" | |
value: $NAME_PREFIX | |
required: true | |
options: | |
- Mr. | |
- Mrs. | |
- Ms. | |
- Miss | |
- Mr. and Mrs. | |
- Dr. | |
- name: ctl00$ctl22$State | |
selector: "#ctl00_ctl22_State" | |
value: $ADDRESS_STATE_POSTAL_ABBREV | |
required: true | |
options: | |
- AL | |
- AK | |
- AZ | |
- AR | |
- CA | |
- CO | |
- CT | |
- DE | |
- DC | |
- FL | |
- GA | |
- HI | |
- ID | |
- IL | |
- IN | |
- IA | |
- KS | |
- KY | |
- LA | |
- ME | |
- MD | |
- MA | |
- MI | |
- MN | |
- MS | |
- MO | |
- MT | |
- NE | |
- NV | |
- NH | |
- NJ | |
- NM | |
- NY | |
- NC | |
- ND | |
- OH | |
- OK | |
- OR | |
- PA | |
- RI | |
- SC | |
- SD | |
- TN | |
- TX | |
- UT | |
- VT | |
- VA | |
- WA | |
- WV | |
- WI | |
- WY | |
- AA | |
- AE | |
- AP | |
- FM | |
- GU | |
- MH | |
- MP | |
- PR | |
- VI | |
- name: ctl00$ctl22$IssuesList | |
selector: "#ctl00_ctl22_IssuesList" | |
value: $TOPIC | |
required: true | |
options: | |
Agriculture: "62466" | |
Appropriations: "61568" | |
Budget and Economy: "62467" | |
Business and Industry: "62468" | |
Defense and Military: "61692" | |
Economic Development: "61565" | |
Education: "61726" | |
Energy: "61527" | |
Environment: "61164" | |
Health Care: "61725" | |
Housing: "62469" | |
International Relations: "62470" | |
Judiciary: "62474" | |
Labor: "62477" | |
Science and Technology: "62473" | |
Small Business: "61612" | |
Social Security: "62476" | |
Tax Policy: "62475" | |
Trade: "62472" | |
Transportation: "62471" | |
Veterans: "61160" | |
- uncheck: | |
- name: ctl00$ctl22$SubscribeChoice | |
selector: "#ctl00_ctl22_SubscribeChoice" | |
- javascript: | |
- value: document.querySelector("#ctl00_ctl22_Body").value = document.querySelector("#ctl00_ctl22_Body").value.replace(/"/g, ''); | |
- recaptcha: | |
- value: true | |
- click_on: | |
- value: Submit | |
selector: "#ctl00_ctl22_SubmitButton" | |
- find: | |
- selector: "span#ctl00_ctl22_ConfirmationText" | |
value: "Thank you" | |
success: | |
headers: | |
status: 200 | |
body: | |
contains: Thank | |