Jump to content
UBot Underground

Help For Fake Review Bot


Recommended Posts

Hello everyone I'm trying to create a bot to post fake review on trip advisor I already succeed to create this task :

 

Go to the url

Click on the sign up button

Fill in a random email and password (Is it possible each time I launch the task to use different one ?) Because I'm using $accountdata and that's always the same email.

The two things I need is to set a TITLE and a DESCRIPTION. My question is is it possible to get content from an external file of 1 title and 1 description each time I launch the bot take another line in the doc.

 

 

Thanks for your help.

 

FXprix

 

Here is my project file

 

 

 

test.ubot

Link to post
Share on other sites

when you use account data for email and pass you should use first reset account in starting the loop then it come new email and pass.And yes this is possible to get content from external file for this you have to put those description in csv file and add as a list or table after that in loop you have to increment that table or list data item.

File you attach is made in ubot browser in my system this code is not running in this browser if you have exbrowser plugin then i can send those code for account creation example code let me know if you have?

Edited by hare ram
  • Like 1
Link to post
Share on other sites

ui open file("Data file(CSV)",#data)
clear table(&Table)
create table from file(#data,&Table)
set(#row,0,"Global")
loop($table total rows(&Table)) {
    reset account("Any")
    navigate("https://www.tripadvisor.fr/","Wait")
    wait(3)
    click(<class="ui_button primary fullwidth">,"Left Click","No")
    click(<class="ui_button primary w100p regTaEmail">,"Left Click","No")
    type text($element offset(<email field>,0),$account data("Email"),"Standard")
    type text($element offset(<password field>,0),$account data("Password"),"Standard")
    click(<onclick="require('ta/registration/Tracking').trackRegSubmitBtnClick('regSignUp', 'core_combined');require('ta/Core/TA.Record').trackEventOnPage('reg_trigger', 'regSignUp_submit_button_click', 'Reg Form | core_combined | ', '427');ta.registration.RegController.submitForm(event, ta.id('regSignUp'), signup_options);">,"Left Click","No")
    navigate("https://www.tripadvisor.fr/Hotel_Review-g187497-d4154012-Reviews-WOW_Hostel_Barcelona-Barcelona_Catalonia.html","Wait")
    wait(3)
    click(<class="ui_button primary war-button">,"Left Click","No")
    type text(<name="ReviewTitle">,$table cell(&Table,#row,0),"Standard")
    type text(<name="ReviewText">,$table cell(&Table,#row,0),"Standard")
    increment(#row)
}

 

This code helps you i hope so

  • Like 1
Link to post
Share on other sites

Thanks a lot for this ! that's exactly what I was looking for.

I just have to check how I need to format the title and description in the data files. =)

 

As I'm .a beginner ^^

Link to post
Share on other sites

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

Loading...
×
×
  • Create New...