在Python中獲取iframe頁面內容的方法有兩種:使用Requests庫和使用Selenium庫。
import requests
url = 'https://example.com'
response = requests.get(url)
html_content = response.text
# 使用BeautifulSoup解析html內容
from bs4 import BeautifulSoup
soup = BeautifulSoup(html_content, 'html.parser')
# 找到iframe元素
iframe = soup.find('iframe')
# 獲取iframe的src屬性
iframe_src = iframe['src']
# 獲取iframe頁面內容
iframe_response = requests.get(iframe_src)
iframe_content = iframe_response.text
print(iframe_content)
from selenium import webdriver
url = 'https://example.com'
driver = webdriver.Chrome()
driver.get(url)
# 切換到iframe
iframe = driver.find_element_by_tag_name('iframe')
driver.switch_to.frame(iframe)
# 獲取iframe頁面內容
iframe_content = driver.page_source
print(iframe_content)
# 退出瀏覽器
driver.quit()
以上是兩種常用的方法來獲取iframe頁面內容,可以根據具體需求選擇適合的方法。