Create Super bot

This commit is contained in:
fatty-doco 2025-05-01 01:49:45 +10:00 committed by GitHub
parent 6b6f3d5fef
commit c5dabefa86
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

43
Super bot Normal file
View file

@ -0,0 +1,43 @@
from selenium import webdriver
from selenium.webdriver.common.by import By
from selenium.webdriver.chrome.options import Options
import time
# SETUP - Replace with your faucet email and password
EMAIL = "baileyjames757@gmail.com"
PASSWORD = "fattyoner126"
def claim_freebitco():
# Setup Chrome browser in headless mode (no window)
options = Options()
options.add_argument("--headless")
driver = webdriver.Chrome(options=options)
try:
# Go to the site
driver.get("https://freebitco.in")
time.sleep(3)
# Click login link
login_link = driver.find_element(By.LINK_TEXT, "Login")
login_link.click()
time.sleep(2)
# Enter login info
driver.find_element(By.NAME, "baileyjames757@gmail.com").send_keys(EMAIL)
driver.find_element(By.NAME, "fattyoner126").send_keys(PASSWORD)
driver.find_element(By.ID, "login_button").click()
time.sleep(5)
# Claim faucet
claim_button = driver.find_element(By.ID, "free_play_form_button")
claim_button.click()
print("Faucet claimed successfully!")
except Exception as e:
print("Something went wrong:", e)
driver.quit()
# Run the faucet claim
claim_freebitco()