All Projects → duartefdias → Instagramfirstcommenter

duartefdias / Instagramfirstcommenter

This bot will post a predefined comment as fast as possible to a new post on the target profile. I used this to successfully win tickets for a big music festival.

Programming Languages

javascript
184084 projects - #8 most used programming language

Projects that are alternatives of or similar to Instagramfirstcommenter

Instagram Bot
An Instagram bot developed using the Selenium Framework
Stars: ✭ 138 (+430.77%)
Mutual labels:  bot, automation, instagram, selenium, selenium-webdriver
Instapy
📷 Instagram Bot - Tool for automated Instagram interactions
Stars: ✭ 12,473 (+47873.08%)
Mutual labels:  bot, automation, instagram, selenium
Spam Bot 3000
Social media research and promotion, semi-autonomous CLI bot
Stars: ✭ 79 (+203.85%)
Mutual labels:  bot, automation, instagram, selenium
Whatsappbot
Send messages to any person in any time how much you want.
Stars: ✭ 104 (+300%)
Mutual labels:  bot, selenium, selenium-webdriver
Go Instabot
Automatically follow, like, and comment on instagram
Stars: ✭ 345 (+1226.92%)
Mutual labels:  bot, automation, instagram
Webwhatsappbot
Core to automatize whatsapp - working 11/2018
Stars: ✭ 59 (+126.92%)
Mutual labels:  bot, automation, selenium
Instagram Profilecrawl
💻 Quickly crawl the information (e.g. followers, tags, etc...) of an instagram profile. No login required!
Stars: ✭ 110 (+323.08%)
Mutual labels:  automation, instagram, selenium
Instalike Instagram Bot
automate instagram activities using instagram bot - like follow/unfollow comment; python requests lib
Stars: ✭ 128 (+392.31%)
Mutual labels:  bot, automation, instagram
Golem
A complete test automation tool
Stars: ✭ 441 (+1596.15%)
Mutual labels:  automation, selenium, selenium-webdriver
Instagram-Giveaways-Winner
Instagram Bot which when given a post url will spam mentions to increase the chances of winning. Win Instagram Giveaways!
Stars: ✭ 95 (+265.38%)
Mutual labels:  instagram, selenium, selenium-webdriver
Nvidia Sniper
🎯 Autonomously buy Nvidia Founders Edition GPUs as soon as they become available.
Stars: ✭ 193 (+642.31%)
Mutual labels:  bot, automation, selenium
Instapy Gui
gui for instapy automation
Stars: ✭ 313 (+1103.85%)
Mutual labels:  bot, automation, instagram
Cdp4j
cdp4j - Chrome DevTools Protocol for Java
Stars: ✭ 232 (+792.31%)
Mutual labels:  automation, selenium, selenium-webdriver
Thirtyfour
Selenium WebDriver client for Rust, for automated testing of websites
Stars: ✭ 191 (+634.62%)
Mutual labels:  automation, selenium, selenium-webdriver
30 Days Of Python
Learn Python for the next 30 (or so) Days.
Stars: ✭ 1,748 (+6623.08%)
Mutual labels:  automation, selenium, selenium-webdriver
Socialmanagertools Igbot
🤖 📷 Instagram Bot made with love and nodejs
Stars: ✭ 699 (+2588.46%)
Mutual labels:  bot, instagram, selenium
Sillynium
Automate the creation of Python Selenium Scripts by drawing coloured boxes on webpage elements
Stars: ✭ 100 (+284.62%)
Mutual labels:  automation, selenium, selenium-webdriver
Frameworkium Core
Framework for writing maintainable Selenium and REST API tests in Java.
Stars: ✭ 107 (+311.54%)
Mutual labels:  automation, selenium, selenium-webdriver
Instauto
Instagram bot / automation library written in Javascript for Node.js
Stars: ✭ 184 (+607.69%)
Mutual labels:  bot, automation, instagram
Insomniac
Instagram bot for automated Instagram interaction using Android device via ADB
Stars: ✭ 324 (+1146.15%)
Mutual labels:  bot, automation, instagram

InstagramFirstCommenter

This is a bot that will make a comment on a post as soon as it is posted on instagram. Just follow the setup instructions and replace the dummy data by a valid instagram account data for it to work.

I created this to win tickets for Vodafone Paredes de Coura. Vodafone had an contest where they posted a total of 8 posts on their instagram page at random times of the day during 2 weeks, this first 10 people to comment those posts won 200 euros worth of tickets for their music festival. This bot did its job and won those tickets.

Requirements

1 - A Windows, Mac or Linux Computer

2 - Google Chrome installed

Setup

This bot is based on protractor automated browser testing software.

1 - Open a terminal an make sure you are in the project directory

cd InstagramFirstCommenter

2 - Make sure you have protractor installed

To check if you have protractor installed run:

protractor --version

If the output is something like this:

Version 5.4.0

This means protractor is already installed, otherwise run the command:

npm install -g protractor

3 - Install Selenium Webdriver

This is where your program will run, to install it simply execute the command:

webdriver-manager

4 - Input valid instagram account credentials

For this bot to work you need to give it an instagram account for it to login into instagram. This can be your personal account, a friend's account or even create an account for this purpose, whatever.

Go to the file spec.js and change this code with your account login information:

// My instagram user information
const myUsername =  '[email protected]';
const myPassword =  'myPassword123';

5 - Choose the page you want to target

Again, go to spec.js and change this code with the information of the page you want to target, the current amount of posts it has and the comment you want to write:

// Target page
const targetURL =  'https://www.instagram.com/myTargetPage';
var numberOfPostsOnTargetProfile =  69;
const commentText =  'This is the comment I am posting';

Done, your bot is ready to roll.

Running the bot

1 - Start the Selenium webserver

Open a terminal an make sure you are in the project directory:

cd InstagramFirstCommenter

Update and start the server:

webdriver-manager update
webdriver-manager start

2 - Run the bot

With the previous terminal still open and running open another terminal an make sure you are in the project directory:

cd InstagramFirstCommenter

Run the bot:

protractor conf.js

About the bot

The bot will login once into instagram and go to the target page.

It will then keep refreshing the page every 2.5 seconds while there is no new post.

Once there is a new post it will open said post and comment what you previously defined.

It will then keep refreshing the page until there is a new post and it will always comment that same text.

To stop the bot you can, in the bot's terminal, press Ctr+C and then y and the Enter. Or you can wait until it does all the iterations, by default it is set to 30000 iterations which is equivalent to aproximately 21 hours.

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].