Recent content by G-UN!T

  1. G

    Posting to Own Facebook Page with Python

    The textbox field where you need to enter data is inside an iframe . So find all the iframe in the page, switch to the one with the textbox and select the textbox and use send_keys method to post content there .
  2. G

    Python Desktop Apps

    No python is great for small apps. But if you really wanna make some heavy app , think scrapebox. Then you need to use other languages like .net or Delphi .
  3. G

    Python selenium, google plus automation.

    Your post button probably is inside an iframe . So you first need to switch to that iframe and then locate the element using find_element_by_whatever_seems_fit methods .
  4. G

    [Help] how to save user cookies and credentials while creating bot in python

    Yeah you just need to store cookies and they are nothing but text, so you can use txt files and avoid using any database altogether. And retrieve them when you need them. So I would make a folder say cookies and in that I would make files named as username of acc containing the cookie inside it .
  5. G

    Google loophole revealed, easy way to get your site's link to show as number one

    I used this method to make my portfolio lol
Back
Top