Schmuel
Schmuel
Thanks mate, this was a great hint!
I dont get any results either... Hope that I understood you correctly @tuanpt ``` >>> for post in get_posts("nintendo", start_url="https://m.facebook.com/profile.php?id=nintendo"): ... print (post) ... >>> ```
Did it work earlier with this set? What kind of proxy are you using? The code you've shared only shows` IP:PORT` which is a placeholder and should be replaced by...
It looks like Chrome is not installed on your deep note instance. Try adding the following to the init cell: ``` wget https://dl.google.com/linux/direct/google-chrome-stable_current_amd64.deb sudo apt install ./google-chrome-stable_current_amd64.deb -Y ``` This...
Try adding `sudo apt update` to the init cell: ``` wget https://dl.google.com/linux/direct/google-chrome-stable_current_amd64.deb sudo apt update sudo apt install ./google-chrome-stable_current_amd64.deb -Y ``` If this doesnt work, try running the commands from...
This is a known Issue. See #48 You might want to close this issue now.
Entering maintenance Hell right now. Since the Cookie Dialogue just changed again, I needed to change the code as follows: ``` allow_span = driver.find_element( By.XPATH, '//div[contains(@aria-label, "Allow all cookies")]/../following-sibling::div') allow_span.click()...
Hi, there is yet no support for automated login to your facebook account. I guess it will be extremely complicated, since facebook uses captcha to protect the website from automated...