Hi, I’m trying to make an autocomment bot for instagram in only one post with csv, but the bot only reply one or none character from the csv.
This is the code:
{
“Name”: “Comentario en IG”,
“CreationDate”: “2020-8-25”,
“Commands”: [
{
“Command”: “open”,
“Target”: “https://www.instagram.com/p/CEUmoZTDeIy/”,
“Value”: “”
},
{
“Command”: “csvRead”,
“Target”: “conid2.csv”,
“Value”: “”
},
{
“Command”: “type”,
“Target”: “xpath=//*[@id=“react-root”]/section/main/div/div/article/div[3]/section[3]/div/form/textarea”,
“Value”: “${!COL2}”
},
{
“Command”: “pause”,
“Target”: “100000”,
“Value”: “”
}
]
}
And my csv is formated like:
id,users
1,@ someuser1 @ someuser2 @ someuser3
2,@ someuser4 @ someuser5 @ someuser6
(Without the spaces between @ and user.)
My idea is to run it in loop like the tutorial.
In the csv i create the id column because I think that the problem was that I only have 1 column but still not working.
Thanks and sorry for my english, not native.