I'm trying to scrape news information from https://hk.appledaily.com/search/apple.
And I need to get the news content from div class="flex-feature"
but it only return []
. Hope anyone could help, thank you!
from bs4 import BeautifulSoup
import requests
page = requests.get("https://hk.appledaily.com/search/apple")
soup = BeautifulSoup(page.content, 'lxml')
results = soup.find_all('div', class_ = "flex-feature")
print(results)