Navigation X
ALERT
Click here to register with a few steps and explore all our cool stuff we have to offer!



 1239

HELP `How to implement proxies botting`

by xthere - 04 March, 2022 - 03:55 PM
This post is by a banned member (xthere) - Unhide
xthere  
Registered
3
Posts
1
Threads
2 Years of service
#1
how do i implement proxies to the code effectively i really dont know anything about coding really but i appreciate any help

 
Code:
 
from selenium import webdriver
from selenium.webdriver.common.by import By
from selenium.webdriver.support.ui import WebDriverWait
from selenium.webdriver.support import expected_conditions as EC
from selenium.webdriver.common.keys import Keys
import time
import winsound
import datetime

driver = webdriver.Chrome()
driver.maximize_window()

#Login ekranı giriş bilgileri
USERNAME = "[email protected]"
PASSWORD = "PASSWORD*"

#Randevu Sahibi Bilgileri 
name = "name"  #küçük ingilizce harf kullanın
surname = "surname" #küçük ingilizce harf kullanın
gender = "Male" #Male, Female
dob = "000000000"    # 01/01/1990 için '/' kullanmadan 01011990 olarak giriniz
nation = "TURKEY"
passNo = "A000000"
pDate = "0000000"   # 01/01/2030 için '/' kullanmadan 01012030 olarak giriniz
phoneCode = "00"
phone = "0000000"
email = "[email protected]"


# Kaç saniyede 1 arama yapılacak - Sistem tek bir seçenek için en az 15 sn ihtiyaç duyuyor neredeyse. Bu yüzden 0.5 dk yaparsanız en fazla 2 alan için aratmalısınız 1 dakika için en fazla 4
REPEAT_TIME_IN_MINUTES = 2
#VFS Login Sayfası URL
VFS_GLOBAL_URL = "https://visa.vfsglobal.com/tur/en/pol/login"

#Bu alan VFS randevu ekranında belirlenen üç kısımı gösteriyor. Buradaki herbir liste elemanı websitesindeki menülerden belirtilen yazılarla eşlenendiğinde çalışıyor. 
#Kategorideki yaıların tamamının yazılmasına gerek yoktur fakat ayrım yapılabilecek kısımlar seçilmelidir. Seçilen kısım tamamiyle aynı yazılmalıdır eşleme için.
VFS_GLOBAL_CENTERS = ["Gaziantep", "Beyoglu", "Trabzon", "Izmir"]
VFS_GLOBAL_CATEGORY = ["(Type D)","(Type D)", "(Type D)","(Type D)"]
VFS_GLOBAL_SUB_CATEGORY= ["Work permit", "Work permit", "Work permit", "Work permit"]

#Her alan seçildiğinde ekrandaki yüklenme arasında geçen zaman eğer sistem yavaşsa artırılabilir yoksa bazı alanları belirtilen sürede bulamaz ise arama aksayabilir 
RESPOND_TIME_IN_SECONDS = 5 
#Sistem ilk açıldığında geçen süre eğer 6 belirlenmisse login ekranından giriş yapıldığında XX:XX:01 olacak şekilde ayarlandı
DELAY = 8

#Alarm süresi
ALARM_DURATION_IN_SECONDS = 60

#####################################################################################################################

REPEAT_TIME_IN_SCONDS = REPEAT_TIME_IN_MINUTES*60
minTen = (datetime.datetime.now().minute) % REPEAT_TIME_IN_MINUTES
totalSec = minTen*60 + datetime.datetime.now().second
waitTime = 0
waitTime = totalSec % REPEAT_TIME_IN_SCONDS
waitTime = totalSec % (REPEAT_TIME_IN_SCONDS-DELAY)
sleepTime = (REPEAT_TIME_IN_SCONDS-DELAY) - waitTime
time.sleep(sleepTime)


driver.get(VFS_GLOBAL_URL)

try:
    coockieAccept = WebDriverWait(driver, 20).until(EC.element_to_be_clickable((By.XPATH, '//*[@id="onetrust-accept-btn-handler"]'))).click()
except Exception as e:
    print(e)

while 1 > 0:

    oldTime = datetime.datetime.now()
    isFound = 0 > 1

    driver.get(VFS_GLOBAL_URL)
    
    while 1 > 0:
        try:
            WebDriverWait(driver, 10).until(EC.presence_of_element_located((By.XPATH, '//*[@id="mat-input-0"]')))
            break
        except Exception as e:
            driver.get(VFS_GLOBAL_URL)


    username = USERNAME
    password = PASSWORD
    

    try:
        time.sleep(1)
        username_Xpath = driver.find_element(By.XPATH, '//*[@id="mat-input-0"]')
        username_Xpath.send_keys(username)
        time.sleep(1)
        password_Xpath = driver.find_element(By.XPATH, '//*[@id="mat-input-1"]')
        password_Xpath.send_keys(password)
        password_Xpath.send_keys(Keys.RETURN)
        time.sleep(2)
    except Exception as e:
        print(e)


    try:
        time.sleep(2)
        element = WebDriverWait(driver, 20).until(EC.element_to_be_clickable((By.XPATH, '/html/body/app-root/div/app-dashboard/section/div/div[2]/button'))).click()
    except Exception as e:
        print(e)


    for x in range(len(VFS_GLOBAL_CENTERS)):        
        try:
            time.sleep(RESPOND_TIME_IN_SECONDS)
            centerXpath = WebDriverWait(driver, 20).until(EC.element_to_be_clickable((By.XPATH, '//*[@id="mat-select-0"]'))).click()
            cXpath = WebDriverWait(driver, 20).until(EC.element_to_be_clickable((By.XPATH, "//mat-option/span[contains(.,'"+ VFS_GLOBAL_CENTERS[x] +"')]"))).click()
            time.sleep(RESPOND_TIME_IN_SECONDS)
            typeXpath = WebDriverWait(driver, 20).until(EC.element_to_be_clickable((By.XPATH, '//*[@id="mat-select-2"]'))).click()
            tXpath = WebDriverWait(driver, 20).until(EC.element_to_be_clickable((By.XPATH, "//mat-option/span[contains(.,'" + VFS_GLOBAL_CATEGORY[x] +"')]"))).click()
            time.sleep(RESPOND_TIME_IN_SECONDS)
            altXpath = WebDriverWait(driver, 20).until(EC.element_to_be_clickable((By.XPATH, '//*[@id="mat-select-4"]'))).click()
            aXpath = WebDriverWait(driver, 20).until(EC.element_to_be_clickable((By.XPATH, "//mat-option/span[contains(.,'" + VFS_GLOBAL_SUB_CATEGORY[x] + "')]"))).click()
            
            try:
                WebDriverWait(driver, 2).until(EC.element_to_be_clickable((By.XPATH, '/html/body/app-root/div/app-eligibility-criteria/section/form/mat-card[2]/button')))
                print("Appointment Found - "+ VFS_GLOBAL_CENTERS[x])
                print(datetime.datetime.now())
                isFound = 1>0
                break
            except Exception as e:
                print("Not Found - "+ VFS_GLOBAL_CENTERS[x])
        except Exception as e:
            print(e)

    if(isFound):
        break

    print("--------------------------")
    
    driver.get("https://google.com")

    newTime = datetime.datetime.now()
    
    sleepTime = round((newTime - oldTime).total_seconds())
    sTime = REPEAT_TIME_IN_SCONDS - (sleepTime % REPEAT_TIME_IN_SCONDS)
    time.sleep(sTime)
    

try:
    confirmXpath = driver.find_element(By.XPATH, '/html/body/app-root/div/app-eligibility-criteria/section/form/mat-card[2]/button').click()
except Exception as e:
    print(e)


element2 = WebDriverWait(driver, 600).until(EC.presence_of_element_located((By.XPATH, '//*[@id="mat-input-2"]')))

try:
    nameXpath = driver.find_element(By.XPATH, '//*[@id="mat-input-2"]').send_keys(name)
except Exception as e:
    print(e)
    
try:
    surNameXpath = driver.find_element(By.XPATH, '//*[@id="mat-input-3"]').send_keys(surname)
except Exception as e:
    print(e)
  

try:
    dobXpath = driver.find_element(By.XPATH, '//*[@id="dateOfBirth"]').send_keys(dob)
except Exception as e:
    print(e)    
    
try:
    passNoXpath = driver.find_element(By.XPATH, '//*[@id="mat-input-4"]').send_keys(passNo)
except Exception as e:
    print(e)
          
try:
    pDateXpath = driver.find_element(By.XPATH, '//*[@id="passportExpirtyDate"]').send_keys(pDate)
except Exception as e:
    print(e)
          
try:
    phoneCodeXpath = driver.find_element(By.XPATH, '//*[@id="mat-input-5"]').send_keys(phoneCode)
except Exception as e:
    print(e)
          
try:
    phoneXpath = driver.find_element(By.XPATH, '//*[@id="mat-input-6"]').send_keys(phone)
except Exception as e:
    print(e)
          
try:
    emailXpath = driver.find_element(By.XPATH, '//*[@id="mat-input-7"]').send_keys(email)
except Exception as e:
    print(e)

try:
    genderXpath = driver.find_element(By.XPATH, '//*[@id="mat-select-value-7"]').click()
    gXpath = driver.find_element(By.XPATH, "//mat-option/span[contains(.,'" + gender + "')]").click()
except Exception as e:
    print(e)
    
try:
    nationXpath = driver.find_element(By.XPATH, '//*[@id="mat-select-8"]').click()
    nXpath = driver.find_element(By.XPATH, "//mat-option/span[contains(.,'" + nation + "')]").click()
except Exception as e:
    print(e)
    
time.sleep(2)   

try:
    saveXpath = driver.find_element(By.XPATH, '/html/body/app-root/div/app-applicant-details/section/mat-card[2]/app-dynamic-form/div/div/app-dynamic-control/div/div/div[2]/button').click()
except Exception as e:
    print(e)

for x in range(ALARM_DURATION_IN_SECONDS):
    winsound.Beep(750, 1000)

time.sleep(3600)    
This post is by a banned member (pfp) - Unhide
pfp  
Godlike
3.695
Posts
563
Threads
3 Years of service
#2
Code:
from selenium import webdriver PROXY = "23.23.23.23:3128" # IP:PORT or HOST:PORT chrome_options = webdriver.ChromeOptions() chrome_options.add_argument('--proxy-server=http://%s' % PROXY) chrome = webdriver.Chrome(chrome_options=chrome_options) chrome.get("http://whatismyipaddress.com")
@pfpcio on tg
This post is by a banned member (xthere) - Unhide
xthere  
Registered
3
Posts
1
Threads
2 Years of service
#3
(This post was last modified: 04 March, 2022 - 04:07 PM by xthere. Edited 1 time in total.)
(04 March, 2022 - 03:56 PM)pfp Wrote: Show More
Code:
from selenium import webdriver PROXY = "23.23.23.23:3128" # IP:PORT or HOST:PORT chrome_options = webdriver.ChromeOptions() chrome_options.add_argument('--proxy-server=http://%s' % PROXY) chrome = webdriver.Chrome(chrome_options=chrome_options) chrome.get("http://whatismyipaddress.com")

Ok so i tried to copy paste this to the code but it seems like broken now  Pepe  
Code:
 
from selenium import webdriver
from selenium.webdriver.common.by import By
from selenium.webdriver.support.ui import WebDriverWait
from selenium.webdriver.support import expected_conditions as EC
from selenium.webdriver.common.keys import Keys
from selenium import webdriver PROXY = "23.23.23.23:3128" # IP:PORT or HOST:PORT chrome_options = webdriver.ChromeOptions() chrome_options.add_argument('--proxy-server=http://%s' % PROXY) chrome = webdriver.Chrome(chrome_options=chrome_options) chrome.get("http://whatismyipaddress.com")
import time
import winsound
import datetime
This post is by a banned member (UberFuck) - Unhide
UberFuck  
Godlike
1.557
Posts
375
Threads
5 Years of service
#4
(04 March, 2022 - 04:06 PM)xthere Wrote: Show More
(04 March, 2022 - 03:56 PM)pfp Wrote: Show More
Code:
from selenium import webdriver PROXY = "23.23.23.23:3128" # IP:PORT or HOST:PORT chrome_options = webdriver.ChromeOptions() chrome_options.add_argument('--proxy-server=http://%s' % PROXY) chrome = webdriver.Chrome(chrome_options=chrome_options) chrome.get("http://whatismyipaddress.com")

Ok so i tried to copy paste this to the code but it seems like broken now  Pepe  
Code:
 
from selenium import webdriver
from selenium.webdriver.common.by import By
from selenium.webdriver.support.ui import WebDriverWait
from selenium.webdriver.support import expected_conditions as EC
from selenium.webdriver.common.keys import Keys
from selenium import webdriver PROXY = "23.23.23.23:3128" # IP:PORT or HOST:PORT chrome_options = webdriver.ChromeOptions() chrome_options.add_argument('--proxy-server=http://%s' % PROXY) chrome = webdriver.Chrome(chrome_options=chrome_options) chrome.get("http://whatismyipaddress.com")
import time
import winsound
import datetime

The formatting looks like it got messed up, you need to put line breaks in there.  Just taking what @pfp alread posted...
 
Code:
from selenium import webdriver
PROXY = "23.23.23.23:3128" # IP:PORT or HOST:PORT
chrome_options = webdriver.ChromeOptions()
chrome_options.add_argument('--proxy-server=http://%s' % PROXY)
chrome = webdriver.Chrome(chrome_options=chrome_options)
chrome.get("http://whatismyipaddress.com")
This post is by a banned member (xthere) - Unhide
xthere  
Registered
3
Posts
1
Threads
2 Years of service
#5
(This post was last modified: 04 March, 2022 - 05:44 PM by xthere.)
(04 March, 2022 - 05:26 PM)foxegado Wrote: Show More
(04 March, 2022 - 04:06 PM)xthere Wrote: Show More
(04 March, 2022 - 03:56 PM)pfp Wrote: Show More
Code:
from selenium import webdriver PROXY = "23.23.23.23:3128" # IP:PORT or HOST:PORT chrome_options = webdriver.ChromeOptions() chrome_options.add_argument('--proxy-server=http://%s' % PROXY) chrome = webdriver.Chrome(chrome_options=chrome_options) chrome.get("http://whatismyipaddress.com")

Ok so i tried to copy paste this to the code but it seems like broken now  Pepe  
Code:
 
from selenium import webdriver
from selenium.webdriver.common.by import By
from selenium.webdriver.support.ui import WebDriverWait
from selenium.webdriver.support import expected_conditions as EC
from selenium.webdriver.common.keys import Keys
from selenium import webdriver PROXY = "23.23.23.23:3128" # IP:PORT or HOST:PORT chrome_options = webdriver.ChromeOptions() chrome_options.add_argument('--proxy-server=http://%s' % PROXY) chrome = webdriver.Chrome(chrome_options=chrome_options) chrome.get("http://whatismyipaddress.com")
import time
import winsound
import datetime

The formatting looks like it got messed up, you need to put line breaks in there.  Just taking what @pfp alread posted...
 
Code:
from selenium import webdriver
PROXY = "23.23.23.23:3128" # IP:PORT or HOST:PORT
chrome_options = webdriver.ChromeOptions()
chrome_options.add_argument('--proxy-server=http://%s' % PROXY)
chrome = webdriver.Chrome(chrome_options=chrome_options)
chrome.get("http://whatismyipaddress.com")

ok so it kinda works now only thing i need to do is importing some proxy right ? @foxegado
This post is by a banned member (UberFuck) - Unhide
UberFuck  
Godlike
1.557
Posts
375
Threads
5 Years of service
#6
(04 March, 2022 - 05:43 PM)xthere Wrote: Show More
ok so it kinda works now only thing i need to do is importing some proxy right ? @foxegado

I guess?  I haven't done shit with selenium...really not my cup of tea.

For development / testing purposes, I'd would recommend creating a throwaway webshare account and use the 10 free proxies.  It will be enough for you to confirm your code is working, and you won't have to worry if about things failing because of dead proxies. 

For checking multiple accounts, you will want to rotate in a new proxy before checking each new account.  I would search github for examples of checkers using proxies and try out a few different methods, but you basically want to load your proxies into a collection (ie list, set, tuple), then grab one from the pool for each new account.

Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
or
Sign in
Already have an account? Sign in here.


Forum Jump:


Users browsing this thread: 1 Guest(s)