Я пытаюсь получить доступ к DOM веб-страницы, открытой с помощью кода ниже Python ..
from bs4 import BeautifulSoup as soup
from urllib.request import urlopen as uReq
from htmldom import htmldom
with open("C:\\Users\\test\\Documents\\Html\\test.html") as htmlfile:
pg=uReq("https://login.salesforce.com/?locale=in").read()
pg_soup=soup(pg,"html.parser")
- это элемент pg_soup, фактический DOM веб-страницы ... или есть ли способ получить доступ к DOM веб-страница
Я застрял в этой проблеме ... Пожалуйста, помогите мне.