Last active
April 12, 2022 16:29
-
-
Save ChronoMonochrome/3070526ac4559299e5c7540593cac735 to your computer and use it in GitHub Desktop.
Flowers farm on discord with selenium
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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