Skip to content

Instantly share code, notes, and snippets.

@ChronoMonochrome
Last active April 12, 2022 16:29
Show Gist options
  • Save ChronoMonochrome/3070526ac4559299e5c7540593cac735 to your computer and use it in GitHub Desktop.
Save ChronoMonochrome/3070526ac4559299e5c7540593cac735 to your computer and use it in GitHub Desktop.
Flowers farm on discord with selenium
import time
from selenium import webdriver
from selenium.webdriver.common.keys import Keys
driver = webdriver.Chrome()
driver.get("https://discord.com/login")
# login and manually navigate to https://discord.com/channels/x/y")
div = driver.find_element_by_xpath('//*[@id="app-mount"]/div[2]/div/div[2]/div/div[1]/div/div/div[2]/div[2]/main/form/div/div/div/div[1]/div/div[3]/div/div[2]')
def loop():
while True:
div.send_keys(".timely")
div.send_keys(Keys.ENTER)
time.sleep(7202)
loop()
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment