소스 검색

Search field name variant for Idox eg Bolton

tags/v0.4.5
Adrian Short 7 년 전
부모
커밋
6d72d25166
1개의 변경된 파일6개의 추가작업 그리고 1개의 파일을 삭제
  1. +6
    -1
      lib/uk_planning_scraper/idox.rb

+ 6
- 1
lib/uk_planning_scraper/idox.rb 파일 보기

@@ -36,7 +36,12 @@ module UKPlanningScraper
# Some councils don't have the applicant name on their form, eg Bexley
form.send(:"searchCriteria\.applicantName", params[:applicant_name]) if form.has_field? 'searchCriteria.applicantName'
form.send(:"searchCriteria\.caseType", params[:application_type])
form.send(:"searchCriteria\.caseType", params[:application_type]) if form.has_field? 'searchCriteria.caseType'
# Some Idox sites (eg Bolton) call this 'searchCriteria.developmentType'
form.send(:"searchCriteria\.developmentType", params[:application_type]) if form.has_field? 'searchCriteria.developmentType'
page = form.submit

loop do


불러오는 중...
취소
저장