N
N
NoobStar2021-02-09 19:53:44
PowerShell
NoobStar, 2021-02-09 19:53:44

Parsing using powershell, is it possible to take the value from the site?

There is a site, for example (yandex.ru). Let's say I need to find out the exchange rate from it every day.
Linux has a wget command where I can specify the site url (for example https://yandex.ru/news/quotes/2002.html )
Next, a list will be generated in the terminal, which I will save in a form convenient for myself and export to the place I need.
Question: Is it possible to do something similar in powershell?

Answer the question

In order to leave comments, you need to log in

1 answer(s)
A
azarij, 2021-02-09
@NoobStar

yes, it is possible.
Invoke-webrequest...
Invoke-restmethod...
$ie = New-Object -ComObject 'InternetExplorer.Application'...
$web = New-Object Net.WebClient...
and even through selenium webdriver you can

Didn't find what you were looking for?

Ask your question

Ask a Question

731 491 924 answers to any question