Displaying 1 result from an estimated 1 matches for "page_download".
2009 Mar 11
0
problem scrapping ATnT site (Matt White)
...adio button.
> Then clicking on "Submit" link downloads the call summary for
> that period.
>
> I tried to do it in mechanize in the following way, but it download
> the src of the page in stead of downloading the actual CSV file.
>
> # get the download page
>
> page_download = agent.get "
> https://www.wireless.att.com/view/billPayDownloadDetail.doview?execdownloadPage=true
> "
>
> # get the form for bill_period and select a bill period
>
> bill_period_form = page_download.forms[2]
> bill_period_form.field.options[2].select
>
> # cl...