I wanted to automate it, so I did a lot of research, but it seems that some people made it in advance, but honestly, I'm still a beginner in programming, so I don't know what I'm writing.
So, this time I studied using selenium
so that I could do the automation myself.
[Selenium] python beginners have modified the Instagram automatic like tool without permission [[Python x Selenium] We have created an automation tool that allows you to search for tags on Instagram and like all the acquired photos](https://review-of-my-life.blogspot.com/2017/12/selenium- instagram.html) [Python] Selenium usage memo Complete automatic operation of Chrome with Python + Selenium Scraping with Selenium in Python (Basic)
I downloaded the chromedriver and tried to use it on python, but I couldn't use it because I didn't know the developer.
So, this time I used chromedriver_binary
to make it usable.
$ pip install chromedriver-binary
import chromedriver_binary
You can now use it.
selenium is a tool for automating screen operations of web applications. It is also used for automated web testing and scraping.
Here, the difference between scraping
and crawling
is that they both collect data on the web.
Scraping is processing to make it easier to process and collecting data on the web, and crawling is just collecting data on the web.
I haven't reached automation at all yet, but I would like to study and be able to do automation myself.
Recommended Posts