我想在每个计时器之后检索动态HTML表的内容,但每次报废后响应总是相同的; 但我不知道怎么做,然后我就开始接受scrapy治疗;这是我的代码内容
# redirection sur la page
def parse_x(self,response):
for q in response.xpath('//*[@id="sessions"]/tbody/tr'):
# recuperation des informations localisé dans la tableau user_session sur la page
instance_name = q.xpath('td[2]//text()').extract_first()
username = q.xpath('td[3]//text()').extract_first()
client_address = q.xpath('td[4]//text()').extract_first()
environnement = q.xpath('td[5]//text()').extract_first()
Timer(5, self.parse_x, [response]).start()