Description:
This scenario automates the process of finding and liking posts on Twitter/X under trending hashtags using Uxer’s AI-powered automation. It opens Chrome, identifies trending topics, and automatically likes posts under the selected hashtag.
How to Use It:
- Copy and paste this template into Uxer’s scenario builder.
- Ensure that you are logged into X in Chrome before running the scenario.
- Save and run the scenario to automate liking posts on Twitter/X under trending hashtags.
Step-by-Step Process:
-
Open Chrome and Navigate to Twitter/X Trending Section:
The scenario opens Chrome and navigates to the trending tab on X.com. Incognito mode is disabled to maintain your logged-in status.OpenBrowser Chrome "https://x.com/explore/tabs/keyword" -Incognito false
-
Verify the Visibility of the “Trending” Section:
The script checks for the “Trending” text to confirm the page is fully loaded and ready to display trending hashtags.IsVisible Text "Trending"
-
Use AskUxer to Select a Trending Hashtag:
Uxer analyzes the provided screen and selects one of the trending hashtags from the “Trending” section, which will be used for liking posts.{TrendTopic} = AskUxer "Give me one of the trending hashtags on the provided X screen." -UseScreenshot true
-
Search for the Selected Hashtag:
The scenario clicks the search field, writes the selected trending hashtag, and initiates the search by pressing Enter.Click Text "Search" Write {TrendTopic} SendKeys Enter
-
Verify Visibility of the “Top” Posts Section:
The script checks for the “Top” text to confirm that the page is loaded and the posts under the trending hashtag are visible.IsVisible Text "Top"
-
Scroll and Like Posts:
The script scrolls five times until it finds a visible “like” button on a post, and then clicks it. It repeats the process three times to like additional posts.Scroll 5 -UntilVisible Image {ux_xcom_like} Click Image {ux_xcom_like} Scroll 5 -UntilVisible Image {ux_xcom_like} Click Image {ux_xcom_like} Scroll 5 -UntilVisible Image {ux_xcom_like} Click Image {ux_xcom_like}
Complete Script:
OpenBrowser Chrome "https://x.com/explore/tabs/keyword" -Incognito false
IsVisible Text "Trending"
{TrendTopic} = AskUxer "Give me one of the trending hashtags on the provided X screen." -UseScreenshot true
Click Text "Search"
Write {TrendTopic}
SendKeys Enter
IsVisible Text "Top"
Scroll 5 -UntilVisible Image {ux_xcom_like}
Click Image {ux_xcom_like}
Scroll 5 -UntilVisible Image {ux_xcom_like}
Click Image {ux_xcom_like}
Scroll 5 -UntilVisible Image {ux_xcom_like}
Click Image {ux_xcom_like}
Let us know if you need further assistance or more use cases!