-
Notifications
You must be signed in to change notification settings - Fork 169
/
Copy pathcookie.py
67 lines (51 loc) · 2.19 KB
/
cookie.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
from selenium import webdriver
import time
chrome_driver_path = "/Users/lenargasimov/Development/chromedriver"
driver = webdriver.Chrome(chrome_driver_path)
driver.get("http://orteil.dashnet.org/experiments/cookie/")
#Get cookie to click on.
cookie = driver.find_element_by_id("cookie")
#Get upgrade item ids.
items = driver.find_elements_by_css_selector("#store div")
item_ids = [item.get_attribute("id") for item in items]
timeout = time.time() + 5
five_min = time.time() + 60*5 # 5minutes
while True:
cookie.click()
#Every 5 seconds:
if time.time() > timeout:
#Get all upgrade <b> tags
all_prices = driver.find_elements_by_css_selector("#store b")
item_prices = []
#Convert <b> text into an integer price.
for price in all_prices:
element_text = price.text
if element_text != "":
cost = int(element_text.split("-")[1].strip().replace(",", ""))
item_prices.append(cost)
#Create dictionary of store items and prices
cookie_upgrades = {}
for n in range(len(item_prices)):
cookie_upgrades[item_prices[n]] = item_ids[n]
#Get current cookie count
money_element = driver.find_element_by_id("money").text
if "," in money_element:
money_element = money_element.replace(",", "")
cookie_count = int(money_element)
#Find upgrades that we can currently afford
affordable_upgrades = {}
for cost, id in cookie_upgrades.items():
if cookie_count > cost:
affordable_upgrades[cost] = id
#Purchase the most expensive affordable upgrade
highest_price_affordable_upgrade = max(affordable_upgrades)
print(highest_price_affordable_upgrade)
to_purchase_id = affordable_upgrades[highest_price_affordable_upgrade]
driver.find_element_by_id(to_purchase_id).click()
#Add another 5 seconds until the next check
timeout = time.time() + 5
#After 5 minutes stop the bot and check the cookies per second count.
if time.time() > five_min:
cookie_per_s = driver.find_element_by_id("cps").text
print(cookie_per_s)
break