how can I get HTML content
from bs4 import BeautifulSoup import requests from selenium import webdriver from selenium.webdriver.firefox.options import Options from getPaginationNumber import getPaginationNumber from getDataProducts import getDataProducts # # Set up Firefox options # firefox_options = Options() # firefox_options.add_argument(“–headless”) # Runs Firefox in headless mode # URL of the webpage to scrape url = ‘https://www.iris.ma/155-serveur’ # Use Selenium to open […]