用动态形式的请求替换硒

时间:2018-12-11 12:23:13

标签: python selenium web-scraping beautifulsoup python-requests

我想对this页面动态表单进行网上剪贴,我现在正在使用Selenium并获得一些结果。

我的问题:

1)是否可以用某些POST请求替换Selenium + WebDriver代码? (我以前曾使用过Requests,但只有在API可用时才使用...我不知道如何反向编写此表单)

2)是否有更好的方法来清理结果页面以仅获取表? (在我的示例中,结果“ data”变量是一团糟,但是无论如何我都获得了最后一个值,该值是脚本的主要目的)

3)有什么建议吗?

我的代码:

from selenium import webdriver
import pandas as pd

from bs4 import BeautifulSoup

def get_tables(htmldoc):
    soup = BeautifulSoup(htmldoc)
    return soup.findAll('table')

driver = webdriver.Chrome()
driver.get("http://dgasatel.mop.cl/visita_new.asp")
estacion1 = driver.find_element_by_name("estacion1")
estacion1.send_keys("08370007-6")
driver.find_element_by_xpath("//input[@name='chk_estacion1a' and @value='08370007-6_29']").click()
driver.find_element_by_xpath("//input[@name='period' and @value='1d']").click()
driver.find_element_by_xpath("//input[@name='tiporep' and @value='I']").click()
driver.find_element_by_name("button22").click()

data = pd.read_html(driver.page_source)

print(data[4].tail(1).iloc[0][2])

谢谢。

1 个答案:

答案 0 :(得分:0)

您问题的简短答案是,可以使用请求库发出发布请求。例如,您可以轻松地在浏览器中打开检查器并使用以下站点复制请求:

https://curl.trillworks.com/

然后,您可以将response.text输入到BeautifulSoup中,以解析出所需的表。

当我在您的示例中对该网站进行操作时,我得到以下信息:

import requests

cookies = {
    'ASPSESSIONIDCQTTBCRB': 'BFDPGLCCEJMKPFKGJJFHKHFC',
}

headers = {
    'Connection': 'keep-alive',
    'Pragma': 'no-cache',
    'Cache-Control': 'no-cache',
    'Origin': 'http://dgasatel.mop.cl',
    'Upgrade-Insecure-Requests': '1',
    'Content-Type': 'application/x-www-form-urlencoded',
    'User-Agent': 'Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.110 Safari/537.36',
    'Accept': 'text/html,application/xhtml+xml,application/xml;q=0.9,image/webp,image/apng,*/*;q=0.8',
    'Referer': 'http://dgasatel.mop.cl/filtro_paramxestac_new.asp',
    'Accept-Encoding': 'gzip, deflate',
    'Accept-Language': 'en-US,en;q=0.9',
}

data = {
  'estacion1': '-1',
  'estacion2': '-1',
  'estacion3': '-1',
  'accion': 'refresca',
  'tipo': 'ANO',
  'fecha_fin': '11/12/2018',
  'hora_fin': '0',
  'period': '1d',
  'fecha_ini': '11/12/2018',
  'fecha_finP': '11/12/2018',
  'UserID': 'nobody',
  'EsDL1': '0',
  'EsDL2': '0',
  'EsDL3': '0'
}

response = 
requests.post(
    'http://dgasatel.mop.cl/filtro_paramxestac_new.asp',
    headers=headers, cookies=cookies, data=data)

为清理数据,建议您将所需的数据点映射到字典或带循环的csv中。

for table in data:
    if table.tail(1) and table.tail(1).iloc:
        print(table.tail(1).iloc[0][2])