When I try to apply filters on the website before webscaping - it yields me to the following URL - https://www.marktplaats.nl/l/auto-s/p/2/#f:10898,10882
However, when I apply it in my script to retrieve href for each and every advertisement, it yields results from this website - https://www.marktplaats.nl/l/auto-s/p/2, completely neglecting 2 of my filters (namely #f:10898,10882).
Can you please advise me what is my problem?
import requests
import bs4
import pandas as pd
frames = []
for pagenumber in range (0,2):
        url = 'https://www.marktplaats.nl/l/auto-s/p/'
        add_url='/#f:10898,10882'
        txt = requests.get(url + str(pagenumber)+add_url)
        soup = bs4.BeautifulSoup(txt.text, 'html.parser')
        soup_table = soup.find('ul', 'mp-Listings mp-Listings--list-view')
        for car in soup_table.findAll('li'):
            link = car.find('a')
            sub_url = 'https://www.marktplaats.nl/' + link.get('href')
            sub_soup = requests.get(sub_url)
            soup1 = bs4.BeautifulSoup(sub_soup.text, 'html.parser')
 
     
    