Recent content by comet_face

  1. C

    I want to Extract download button link from multiple pages in google sheets or any other tool which can solve

    =IMPORTXML(A2; "//a[contains(@class, 'buttonDownload')]/@href") This should work for every page
  2. C

    Is python good for coding a bot?

    BrowserAutomationStudio is much better for this purpose. It has the best antidetect system and is easier to learn
  3. C

    Scraping Google results, avoid captcha / ip sources?

    "Farming cookies" means having the same browser profile and doing things that real humans do, like searching, watching videos etc.
  4. C

    Looking for some guidance with solving a particular Arkose Funcaptcha (not looking for a hand out though!)

    You can try solving it with clicks as a workaround: https://2captcha.com/2captcha-api#coordinates I would also recommend to avoid using selenium, because it can be easily detected. Try BrowserAutomationStudio, they have the best antidetect system
  5. C

    open automatically all the urls

    The easiest way is to use BrowserAutomationStudio for this. Here is the video:
  6. C

    Which languages are needed to build a website from scratch for cross platform?

    You can make both frontend and backend with JavaScript only (Node.js). Also, check Github for blog/forum engines: https://github.com/search?q=node.js+blog https://github.com/search?q=node.js+forum
  7. C

    I want to Extract download button link from multiple pages in google sheets or any other tool which can solve

    Try this: =IMPORTXML(A2; "//a[contains(@href, 'drive.google.com/file')]/@href")
  8. C

    Is Python the best ally for SEO?

    I would recommend trying to make simple programs for your needs first. There are plenty of videos on web scraping with Python. Learning all the basics can be overwhelming.
  9. C

    Is Java easy to learn?

    Java is more complex than Python or JavaScript, for example, but is good for understanding computer science concepts. Once you get to grips with it, learning any other language won't be a problem.
  10. C

    The fastest way to learn programming? ??

    Try BrowserAutomationStudio. This is the best way to get into botting at the moment
Back
Top