How to Automate Likes on Instagram for Targeted Topics

Do you want to effortlessly engage with Instagram posts by liking content relevant to your brand or interests? This guide walks you through automating the process of finding posts under a specific hashtag and liking them. Increase your visibility and engagement on Instagram without manually scrolling through each post.


Description:
This template automates the process of finding Instagram posts related to a specific hashtag and liking them. It helps you increase engagement and visibility for your brand by interacting with relevant content without manually scrolling through each post.


How to Use It:

  1. Copy and paste this template into Uxer’s scenario builder.
  2. Ensure that you are logged into Instagram in Chrome before running the scenario.
  3. Save and run the scenario to automatically find and like posts based on your targeted hashtag on Instagram.

Step-by-Step Guide

  1. Open Instagram in Browser
    Start by opening Instagram with incognito mode disabled to ensure the user remains logged into their account.

    OpenBrowser Chrome "https://www.instagram.com" -Incognito false
    
  2. Search for Your Targeted Hashtag
    Use Instagram’s search bar to find posts under a specific hashtag, such as “#aiautomation.” Wait is added to be sure that search bar is ready.

    Click Text "Search"
    Wait Text "Recent" 
    Write "#aiautomation"
    
  3. Select the Hashtag from Results
    Click on the second instance of the hashtag to view posts related to your search.

    Click Text "#aiautomation" [1]
    
  4. Wait for the Page to Load
    Ensure the page is fully loaded by waiting for the “Home” text to appear.

    Wait Text "Home"
    
  5. Click on the Post
    Navigate to the first post which is 150 pixel under the “Not Personalized” text and click it.

    Click Text "Not Personalized" -YMargin 150
    
  6. Like the Post
    Attempt to like the first post. If it is already liked, continue to the next post.

    Click Image {ux_instagram_like} [1] -WhenFails continue -Retry 3
    
  7. Repeat the Process
    Continue scrolling right and liking posts that haven’t been liked.

    SendKeys RIGHT -UntilVisible Image {ux_instagram_like} [1]
    Click Image {ux_instagram_like} [1]
    

Complete Scenario:

OpenBrowser Chrome "https://www.instagram.com" -Incognito false
Click Text "Search"
Wait Text "Recent" 
Write "#aiautomation"
Click Text "#aiautomation" [1]
Wait Text "Home"
Click Text "Not Personalized" -YMargin 150
Click Image {ux_instagram_like} [1] -WhenFails continue -Retry 3
SendKeys RIGHT -UntilVisible Image {ux_instagram_like} [1]
Click Image {ux_instagram_like} [1]
SendKeys RIGHT -UntilVisible Image {ux_instagram_like} [1]
Click Image {ux_instagram_like} [1]

Conclusion

This automation template helps you engage with Instagram posts related to specific hashtags like “#aiautomation.” By automating the liking process, you can increase engagement and save time. Use this template to streamline your Instagram interactions and maintain an active presence with minimal effort.


Want more automation templates? Let us know what topics you’re interested in, and we’ll help you automate them effortlessly!

Hi @Zekeriya Im having issues with trying to automate “likes” on instagram. I followed the instructions and use {ux_instagram_like}. But it always clicks the notification “heart” image instead of the “like” heart image. I even tried creating my own image with screenshot and selecting and saving the heart but still not working. I tried chatGPT to review and help with the code but still no luck… can you help?

Hi @aergotech ,

I will explain the root couse of this and offer couple of solutions to fix the situation.

Root cause: notification heart looks pretty similart to the notification icon. And computer vision finds not the exact match but the first similar match. For that reason it can find the notification heart icon.
Here is an example:

Solution 1:

  1. Create a new parameter with including other things around so that it will be more unique. For example you can include the comments part in the parameter as well as in the example below. It will make the image more unique.

  1. Increase the confidence level of your parameter. By default it is 0,7. You can increase it to 0,8 or 0,9. Try and see what works the best for you. It is like increasing the computer vision sensivitiy from 70% to 80%

  1. If there is more than one image on the page you can use index value. For example when I put 1 as the index value, it will find the “second match” on the screen. It will not be a good solution in your case since heart icon can be above the notification icon but it is just to let you know.

Here I put index value 2 which will click the 3rd match

Hope it helps.