Recent content by Crawlie

  1. Crawlie

    How to start with Scraping

    For Java check out HtmlUnit. It's lightweight and fast, parses JavaScript generated content. JSoup only parses static html. You can also use Selenium, but that eats more resources. A basic scraping script for a site is only a few lines of code.
  2. Crawlie

    Why doesn't Java have its own sub forum?

    Definitely Java should! Being the most popular language and all(save js).
  3. Crawlie

    Selenium Bot Question - Time to Create

    If there is no other obstacle like captcha or worrying about proxy, then login bot is 5 minutes. Posting is another 5. Definitely worth it IMO.
  4. Crawlie

    Chrome Extension - Shoot some ideas (to develop/code)

    I used to have a Firefox extension where it opens a new tab on double click, sadly Chrome does not have it, maybe you could do that.
  5. Crawlie

    Scraping million of Google search results

    Of course you need proxies, otherwise Google blacklists your ip pretty fast. Rotate them so each request is a new proxy. Also you can use timer to try and randomize your bot. Set max results in Google query, which I think is 100, then you can loop through pages. After some time Google gives...
  6. Crawlie

    Facebook Scraper

    I doubt you really want to use their API. That would not be scraping. Any language is good, python is the most popular for scraping. I personally like Java. Desktop or web app depends, which one are you more familiar with?
  7. Crawlie

    Instagram Registering with Java

    Oh and of course if you add wrong/invalid data to the input fields it won't log in...
  8. Crawlie

    Instagram Registering with Java

    Tested, works: import org.openqa.selenium.By; import org.openqa.selenium.chrome.ChromeDriver; import java.util.concurrent.TimeUnit; public class Main { public static void main(String[] args) { System.setProperty("webdriver.chrome.driver","your path to chromdriver")...
  9. Crawlie

    For who is using chromedriver in selenium: IT IS DETECTABLE

    I used Firefox driver and PhanomJS, what is your concern?
  10. Crawlie

    Instagram Registering with Java

    You need to add Selenium or HtmlUnit and use these headless browsers (or Chrome/Firefox drivers). Maybe later in the day I can write something more detailed if you want.
  11. Crawlie

    Java + Selenium Keyword Bot (Need Help)

    Also, you might wanna look into HtmlUnit, it's more lightweight and faster than Selenium.
  12. Crawlie

    How to code right now?Advice to a New Programmer

    I found tutorialspoint to be very vague, I usually try to avoid it when looking for resources.
  13. Crawlie

    Using chromedriver for scraping google and setting up accounts?

    It's perfectly ok if you use proxies.
  14. Crawlie

    What Programming language is used in seo softwares like Zennoposter,ubot?

    Scrapebox is Delphi, Xrumer is c++, but it doesn't matter. Just learn one language well.
  15. Crawlie

    Software Launching..

    Haven't done it before but planning to. If you have no coding experience then your only option is obviously to hire someone. If you have some time on your hands you might as well get into programming... It's generally good to have some knowledge in it.
Back
Top