A
A
aqau1232022-01-31 21:38:53
Python
aqau123, 2022-01-31 21:38:53

Why isn't he on Instagram?

instagram = Instagram()

    if instagram.login(config.credentials['instagram']['login'], config.credentials['instagram']['password']):
        instagram.collectArticles()

def login(self, login: str, password: str) -> bool:
        
        self.driver.get('https://www.instagram.com')
        
        try:
            self.wait.until(EC.presence_of_element_located((By.XPATH, searchConfig.instagram['properties']['login'])))
            self.wait.until(EC.presence_of_element_located((By.XPATH, searchConfig.instagram['properties']['password'])))
            self.wait.until(EC.presence_of_element_located((By.XPATH, searchConfig.instagram['properties']['loginButton'])))
        except sex.WebDriverException:
            self.driver.quit()
            return False

        loginInput = self.driver.find_element(By.XPATH, searchConfig.instagram['properties']['login'])
        passwordInput = self.driver.find_element(By.XPATH, searchConfig.instagram['properties']['password'])

        for char in login:
            loginInput.send_keys(char)

        for char in password:
            passwordInput.send_keys(char)

        self.driver.find_element(By.XPATH, searchConfig.instagram['properties']['loginButton']).click()

        return True

    def collectArticles(self):
        links = self.getInputLinks('instagram')
        
        for key, value in links.items():
            self.driver.get(value)

            time.sleep(5)

        self.driver.close()

enters a login, enters a password, clicks on a button, I get a redirect back to the login page. This is what instagram is spinning again. I prescribed time slips, and entered by symbol, and pressed the button in different places.

Answer the question

In order to leave comments, you need to log in

1 answer(s)
D
Dimonchik, 2022-02-01
@dimonchik2013

use the unofficial API if it is still alive,
and Selenium must be disguised as a living person, Insta aka FB is very technologically advanced

Didn't find what you were looking for?

Ask your question

Ask a Question

731 491 924 answers to any question