Here's the code:

```python
def parse(self, response):
    list_of_languages = ['English', 'Russian']

    for language in list_of_languages:
        yield FormRequest.from_response(response,
        formname='some_form_name',
        formdata={'language_form': language},
        callback=self.parse_items,
        dont_filter=True)
```
In this example the Russian pages gets scraped two times over while the 
English pages don't at all. What I get in the end is two pages scraped that 
are in English and what I want is the same page scraped first time in 
English and the second time in the Russian. 

Thanks,
Lazar

-- 
You received this message because you are subscribed to the Google Groups 
"scrapy-users" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to scrapy-users+unsubscr...@googlegroups.com.
To post to this group, send email to scrapy-users@googlegroups.com.
Visit this group at http://groups.google.com/group/scrapy-users.
For more options, visit https://groups.google.com/d/optout.

Reply via email to