[Learn] ★ Botting Automation Free ★ iMacros Tutorials! (No-Codeing) ★ [Learn]

I remember some 5yrs back I made a bot to make an FB account in Imacro, those were good old days.
But I stopped using it, Imacro is good for a basic website not for a complex website.
Last I read imacro stopped updating their software.
there is no way of data manipulation, will be forced to use some other software.

I just ran some data extraction test and its working wonderful. You can do very complex tasks with iMacros if you have the correct training. My plan is to help you all and share my advanced knowledge of iMacros.

If tompots shares something that means very valuable. Thank you for this.

Thank you for your kind words

great share. but I guess it's detected easily

No iMacros is not detected easily.

Thank you for this very, very useful direction.

You are very welcome I'm glad i can help and add value to all your lives.

Never used iMacros, but this is pretty much what it sounds like to me

iMacros is a very useful tool for anyone that works on line.

Good share thanks buddy. So how could this be used to make some money :)

The possibilities are endless, you can automate any task done in the browser that makes money.

Can you post how i can send direct message on Instagram

We can work on that in the future.

Better use any bot for this purpose

You can make almost any web browser based bot with iMacros.

Like what bot do you suggest
 
imacros is free again?!
thank god. i used to use this for all my botting needs
 
What do you mean there is a free version again? I know they removed the ability to extract data from the free version.
 
imacros is free again?!
thank god. i used to use this for all my botting needs

I was very excited when I found out. One of the best free Marketing tools ever.

What do you mean there is a free version again? I know they removed the ability to extract data from the free version.

Hello, The free version extracts data just fine, all you need to do to test this is place this code below in the current.iim file and press play, you will see it extracts the data and store it to a file. Yes, it's free for firefox and for chrome.

Code:
TAB T=1
URL GOTO=http://demo.imacros.net/Automate/Extract2

TAG POS=1 TYPE=TD ATTR=CLASS:bdytxt&&TXT:* EXTRACT=TXT
TAG POS=1 TYPE=A ATTR=TXT:H*links* EXTRACT=TITLE
TAG POS=1 TYPE=SPAN ATTR=CLASS:bdytxt&&TXT:* EXTRACT=HTM
TAG POS=1 TYPE=A ATTR=TXT:HREF<SP>extracts<SP>links EXTRACT=HREF
TAG POS=1 TYPE=IMG ATTR=SRC:*shark_thumbnail.jpg EXTRACT=ALT      
TAG POS=1 TYPE=INPUT:TEXT FORM=NAME:form1 ATTR=NAME:abc EXTRACT=TXT
TAG POS=1 TYPE=INPUT:TEXT FORM=NAME:form1 ATTR=ID:TF2 EXTRACT=TXT
TAG POS=2 TYPE=TABLE ATTR=TXT:*My* EXTRACT=TXT
TAG POS=1 TYPE=TD ATTR=CLASS:bdytxt&&TXT:* EXTRACT=TXT
'
'Relative extraction
'
'1. Mark reference (anchor) element
TAG POS=1 TYPE=TH ATTR=TXT:MyTable
'2. POS value is RELATIVE to the anchor element
TAG POS=R3 TYPE=TD ATTR=TXT:* EXTRACT=TXT
'The extracted values will be stored in the csv file under the iMacros Download folder
SAVEAS TYPE=EXTRACT FOLDER=* FILE=+_{{!NOW:yyyymmdd_hhnnss}}
 
Thanks @tompots

I also have a script to "FOLLOW" Instagram users, but I don't know how to make it scroll down the list. Can you please help.
Here's the script:

SET !TIMEOUT_STEP 1

SET !VAR1 4

TAG POS=1 TYPE=BUTTON ATTR=TXT:Follow
WAIT SECONDS={{!VAR1}}
 
Hello, try this change the
Thanks @tompots

I also have a script to "FOLLOW" Instagram users, but I don't know how to make it scroll down the list. Can you please help.
Here's the script:

SET !TIMEOUT_STEP 1

SET !VAR1 4

TAG POS=1 TYPE=BUTTON ATTR=TXT:Follow
WAIT SECONDS={{!VAR1}}


Hello, can you provide the URL of the page you're trying to scroll down? If your scrolling
to click more follow buttons you can do this by changing the offset as follows below.

SET !TIMEOUT_STEP 1

SET !VAR1 4

TAG POS=1 TYPE=BUTTON ATTR=TXT:Follow
WAIT SECONDS={{!VAR1}}
TAG POS=2 TYPE=BUTTON ATTR=TXT:Follow
WAIT SECONDS={{!VAR1}}
TAG POS=3 TYPE=BUTTON ATTR=TXT:Follow
WAIT SECONDS={{!VAR1}}
TAG POS=4 TYPE=BUTTON ATTR=TXT:Follow
WAIT SECONDS={{!VAR1}}
TAG POS=5 TYPE=BUTTON ATTR=TXT:Follow
WAIT SECONDS={{!VAR1}}
TAG POS=6 TYPE=BUTTON ATTR=TXT:Follow
WAIT SECONDS={{!VAR1}}
[/QUOTE]
 
Hey, thanks for the reply @tompots :)
I wanted to scroll down the Pop-Up tab. But I found a way to do that by using the KEYPRESS COMMAND.
EVENT TYPE=KEYPRESS SELECTOR="div.isgrP" KEY=34

Here the selector is the div tag of the pop-up and KEY 34 is PageDown key. See the image below:

tmtGb.jpg


THOUGH I WANT YOUR HELP WITH SOMETHING ELSE NOW :D

I am using this code to follow people on that pop-up, but the RANDOM time is not getting applied in every step.
When it runs for the very first time, it put VAR1 as 5-25 but in each step, it takes that number only. Does not generate a random number every time.
I hope you are getting what I am trying to say.

SET !VAR2 5
SET !VAR3 25
SET !VAR1 EVAL("var randomNumber=Math.floor(Math.random()*\"{{!VAR3}}\" +\"{{!VAR2}}\"); randomNumber;")

TAG POS=1 TYPE=BUTTON ATTR=TXT:Follow
WAIT SECONDS={{!VAR1}}
TAG POS=1 TYPE=BUTTON ATTR=TXT:Follow
WAIT SECONDS={{!VAR1}}

EXAMPLE: If it sets 14 as a random number, then in each step it takes 14 as WAIT TIME.
If it sets 22 as a random number in the first step, then it takes 22 as WAIT TIME in every step. How can I apply random intervals in each step?

Regards
 
Hey, thanks for the reply @tompots :)
I wanted to scroll down the Pop-Up tab. But I found a way to do that by using the KEYPRESS COMMAND.
EVENT TYPE=KEYPRESS SELECTOR="div.isgrP" KEY=34

Here the selector is the div tag of the pop-up and KEY 34 is PageDown key. See the image below:

tmtGb.jpg


THOUGH I WANT YOUR HELP WITH SOMETHING ELSE NOW :D

I am using this code to follow people on that pop-up, but the RANDOM time is not getting applied in every step.
When it runs for the very first time, it put VAR1 as 5-25 but in each step, it takes that number only. Does not generate a random number every time.
I hope you are getting what I am trying to say.



EXAMPLE: If it sets 14 as a random number, then in each step it takes 14 as WAIT TIME.
If it sets 22 as a random number in the first step, then it takes 22 as WAIT TIME in every step. How can I apply random intervals in each step?

Regards


Hello and thank you for your question, I always like seeing people helping themselves first. Here you go, you have to recall the code to regenerate a new value each time. I also changed your delay times to uneven numbers.

Code:
SET !VAR2 3
SET !VAR3 27
SET !VAR1 EVAL("var randomNumber=Math.floor(Math.random()*\"{{!VAR3}}\" +\"{{!VAR2}}\"); randomNumber;")
WAIT SECONDS={{!VAR1}}
SET !VAR1 EVAL("var randomNumber=Math.floor(Math.random()*\"{{!VAR3}}\" +\"{{!VAR2}}\"); randomNumber;")
WAIT SECONDS={{!VAR1}}
 
Hello and thank you for your question, I always like seeing people helping themselves first. Here you go, you have to recall the code to regenerate a new value each time. I also changed your delay times to uneven numbers.

Code:
SET !VAR2 3
SET !VAR3 27
SET !VAR1 EVAL("var randomNumber=Math.floor(Math.random()*\"{{!VAR3}}\" +\"{{!VAR2}}\"); randomNumber;")
WAIT SECONDS={{!VAR1}}
SET !VAR1 EVAL("var randomNumber=Math.floor(Math.random()*\"{{!VAR3}}\" +\"{{!VAR2}}\"); randomNumber;")
WAIT SECONDS={{!VAR1}}

Thank you so much, sir. That is all I wanted to ask.
Actually, I am new to all these languages, so I don't know much about them.

I thought we just have to put this "Random Number" code once and every time a new number will be generated.
Thanks for the clarification.

Regards
 
@tompots
Thinking of testing this today. Need it to automate alot of tasks. Would it work well inputting complex data into wordpress? Or the more steps involved the less it will work?

The steps are like this.

1-Log into wordpress
2- click a certain button on left pane within WP dashboard
3 - create a type of post
4 - scroll to a section of the post.
4.1 - click a button to add data.
5- open a txt document thats on my local desktop.
6 - copy data from txt document and input each string of text into different parts of the post.
7 - save post and repeat.

It takes me a while, as data im inputting into WP is complex.

If you wana talk via PM more about the site let me know. I wana automate today of possible. Will play with the macros though.
 
@tompots
Thinking of testing this today. Need it to automate alot of tasks. Would it work well inputting complex data into wordpress? Or the more steps involved the less it will work?

The steps are like this.

1-Log into wordpress
2- click a certain button on left pane within WP dashboard
3 - create a type of post
4 - scroll to a section of the post.
4.1 - click a button to add data.
5- open a txt document thats on my local desktop.
6 - copy data from txt document and input each string of text into different parts of the post.
7 - save post and repeat.

It takes me a while, as data im inputting into WP is complex.

If you wana talk via PM more about the site let me know. I wana automate today of possible. Will play with the macros though.


Hello, yes you can do that with iMacros, but for big Tasks, I would recommend getting their paid versions of iMacros. iMacros is very good at automating tasks on the fly.
 
@tompots
i just came to know about imacros.
Can we automate reddit postings upvote karma with this? Its fine if reddit accounts gets banned. Need for reddit spamming. Any help is appreciated.
 
@tompots
i just came to know about imacros.
Can we automate reddit postings upvote karma with this? Its fine if reddit accounts gets banned. Need for reddit spamming. Any help is appreciated.


Hello and thank you for your reply, yes you can use iMacros for any automation task so long as you have iMacros skills to do so.
 
Can you recommend any guide or tutorials for that
Its a very large file, all videos mostly.

iMacros Video Tutorials -> 1.30GB These video are not widely distributed.
Code:
https://mega.nz/file/x50wlaIT#WUzoW0iR7uzoP502TBZPu7u7obmBcNjLgr8Mxg-_3F8
 
Back
Top