`I was trying to scrape the data from chromium but I was not able to scrape the data. If anyone have any solution would really appreaciate
import requests
from bs4 import BeautifulSoup
url = 'https://bugs.chromium.org/p/chromium/issues/detail?id=1406673'
response = requests.get(url)
soup = BeautifulSoup(response.text, 'html.parser')
title = soup.find('div', class_='container-outside')
title
if title:
title = title.find('aside', class_='metadata-container').find('div', class_='container-issue').find('div', class_='issue-header-container').find('h2').text.strip()
print(title)`your text`
else:
print("Title not found")
it's showing Title not found!