Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

selenium.py scroll down yapmiyor #2

Open
aliyamac opened this issue Dec 21, 2020 · 2 comments
Open

selenium.py scroll down yapmiyor #2

aliyamac opened this issue Dec 21, 2020 · 2 comments

Comments

@aliyamac
Copy link

Merhaba,

selenium.py dosyasindan While döngüsüne girdikten sonra ilk scroll down yapiliyor fakat daha sonra tekrar dialog.click() yaparken calismiyor ve rastgele bir takipcinin adina tikliyor. sorun ne olabilir acaba?

@hakanocal
Copy link

hakanocal commented Feb 3, 2021

Sanırım yeteri kadar kaydırma işlemi gerçekleştirmediği için bu problem yaşanıyor. Scroll Down işlemini gerçekleştiren satırı time.sleep(1) ile beraber 3 kez art arda kullanınca bende problem çözüldü.

@alii76tt
Copy link

Ben o problemi şu şekilde çözdüm böyle daha kullanılabilir oldu:

`def scrollDown(self):
# Javascript commands

    jsCommand = """
    page = document.querySelector(".isgrP");
    page.scrollTo(0,page.scrollHeight);
    var pageDown = page.scrollHeight;
    return pageDown;
    """
    pageDown = self.browser.execute_script(jsCommand)

    while True:
        end = pageDown
        time.sleep(1)
        pageDown = self.browser.execute_script(jsCommand)
        if end == pageDown:
            break    `

Ve programı biraz daha eklemeler yaparak github hesabımda paylaştım. Bakmanızı tavsiye ederim link:
Python Instagram Bot

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

3 participants