mirror of
https://github.com/unitedstates/contact-congress.git
synced 2025-12-19 09:27:29 -05:00
111 lines
3.6 KiB
YAML
111 lines
3.6 KiB
YAML
bioguide: V000131
|
|
contact_form:
|
|
method: post
|
|
action: ""
|
|
steps:
|
|
- visit: "https://veaseyforms.house.gov/forms/writeyourrep/"
|
|
- fill_in:
|
|
- name: ctl00$ctl08$FirstName
|
|
selector: "#ctl00_ctl08_FirstName"
|
|
value: $NAME_FIRST
|
|
required: true
|
|
- name: ctl00$ctl08$LastName
|
|
selector: "#ctl00_ctl08_LastName"
|
|
value: $NAME_LAST
|
|
required: true
|
|
- name: ctl00$ctl08$Street
|
|
selector: "#ctl00_ctl08_Street"
|
|
value: $ADDRESS_STREET
|
|
required: true
|
|
- name: ctl00$ctl08$City
|
|
selector: "#ctl00_ctl08_City"
|
|
value: $ADDRESS_CITY
|
|
required: true
|
|
- name: ctl00$ctl08$Zip
|
|
selector: "#ctl00_ctl08_Zip"
|
|
value: $ADDRESS_ZIP5
|
|
required: true
|
|
- name: ctl00$ctl08$Phone
|
|
selector: "#ctl00_ctl08_Phone"
|
|
value: $PHONE
|
|
required: true
|
|
- name: ctl00$ctl08$Email
|
|
selector: "#ctl00_ctl08_Email"
|
|
value: $EMAIL
|
|
required: true
|
|
- name: ctl00$ctl08$Subject
|
|
selector: "#ctl00_ctl08_Subject"
|
|
value: $SUBJECT
|
|
required: true
|
|
- name: ctl00$ctl08$Body
|
|
selector: "#ctl00_ctl08_Body"
|
|
value: $MESSAGE
|
|
required: true
|
|
- select:
|
|
- name: ctl00$ctl08$PrefixList
|
|
selector: "#ctl00_ctl08_PrefixList"
|
|
value: $NAME_PREFIX
|
|
required: true
|
|
options:
|
|
- Mr.
|
|
- Mrs.
|
|
- Dr.
|
|
- Ms.
|
|
- name: ctl00$ctl08$IssuesList
|
|
selector: "#ctl00_ctl08_IssuesList"
|
|
value: $TOPIC
|
|
required: true
|
|
options:
|
|
Agriculture and Food: "72553"
|
|
Animals: "72548"
|
|
Armed Forces and National Security: "72518"
|
|
"Arts, Culture, Religion": "72491"
|
|
"Civil Rights and Liberties, Minority Issues": "72475"
|
|
Commerce: "72457"
|
|
Congress: "72435"
|
|
Crime and Law Enforcement: "72422"
|
|
Economics and Public Finance: "72396"
|
|
Education: "72552"
|
|
Emergency Management: "72363"
|
|
Energy: "72354"
|
|
Environment: "71993"
|
|
Families: "72323"
|
|
Finance and Financial Sector: "72313"
|
|
Foreign Trade and International Finance: "72296"
|
|
Government Operations and Politics: "72282"
|
|
Health Care: "72551"
|
|
Housing and Community Development: "72187"
|
|
Immigration: "72173"
|
|
International Affairs: "72163"
|
|
Labor and Employment: "72143"
|
|
Law: "72127"
|
|
Native Americans: "72109"
|
|
Public Lands and Natural Resources: "72102"
|
|
"Science, Technology, Communications": "72087"
|
|
Social Sciences and History: "72063"
|
|
Social Welfare: "72055"
|
|
Sports and Recreation: "72049"
|
|
Taxation: "72041"
|
|
Transportation and Public Works: "72550"
|
|
Water Resources Development: "72006"
|
|
- check:
|
|
- name: ctl00$ctl08$ReplyChoice
|
|
selector: "#ctl00_ctl08_ReplyChoice_0"
|
|
value: Respond
|
|
- javascript:
|
|
- value: document.querySelector("#ctl00_ctl08_Body").value = document.querySelector("#ctl00_ctl08_Body").value.replace(/"/g, '');
|
|
- recaptcha:
|
|
- value: true
|
|
- click_on:
|
|
- value: Submit
|
|
selector: "#ctl00_ctl08_SubmitButton"
|
|
- find:
|
|
- selector: "span#ctl00_ctl08_ConfirmationText"
|
|
value: "Thank you"
|
|
success:
|
|
headers:
|
|
status: 200
|
|
body:
|
|
contains: Thank you
|
|
|