-1
我已經將網頁的內容導入到python中的變量中,但我沒有得到最終結構(通常由Ajax和jQuery修改的結構)。使用Python執行jQuery和Javascript執行後獲取Html頁面
我該如何解決這個問題? 我想要得到的HTML作爲我看到的,如果我從瀏覽器保存頁面。
這是我的代碼:
import urllib.request
urlAddress = "http:// ... /"
getPage = urllib.request.urlopen(urlAddress)
outputPage = str(getPage.read())
print(outPage)