-
Notifications
You must be signed in to change notification settings - Fork 150
/
Copy pathwhole_foods_delivery_autobuy_windows.py
145 lines (119 loc) · 5.23 KB
/
whole_foods_delivery_autobuy_windows.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
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
import bs4
from selenium import webdriver
from selenium.common.exceptions import NoSuchElementException
from selenium.webdriver.support.ui import WebDriverWait
from selenium.webdriver.support import expected_conditions as EC
from selenium.webdriver.common.by import By
import sys
import time
import os
import winsound
def autoCheckout(driver):
driver = driver
duration = 1000
freq = 440
#time.sleep(1)
time.sleep(4)
driver.execute_script("window.scrollTo(0, 200)")
#time.sleep(4)
try:
#slot_select_button = driver.find_element_by_xpath('//*[@id="20200413"]/div[1]/div/ul/li/span/span/div/div[2]/span/span/button')
slot_select_button = driver.find_element_by_xpath('/html/body/div[5]/div[1]/div/div[2]/div/div/div/div/div[1]/div[4]/div[2]/div/div[3]/div/div/ul/li/span/span/div/div[2]/span/span/button')
#slot_select_button = driver.find_element_by_class('a-button-text ufss-slot-toggle-native-button')
slot_select_button.click()
print("Clicked open slot")
#time.sleep(1400)
except NoSuchElementException:
try:
slot_select_button = driver.find_element_by_xpath('/html/body/div[5]/div[1]/div/div[2]/div/div/div/div/div[1]/div[4]/div[2]/div/div[4]/div/div/ul/li/span/span/div/div[2]/span/span/button')
slot_select_button.click()
except NoSuchElementException:
print("Found a slot but it got taken, run script again.")
winsound.Beep(freq, duration)
slot_continue_button = driver.find_element_by_xpath('//*[@id="shipoption-select"]/div/div/div/div/div[2]/div[3]/div/span/span/span/input')
#slot_continue_button = driver.find_element_by_xpath('/html/body/div[5]/div[1]/div/div[2]/div/div/div/div/div[2]/div[3]/div/span/span/span/input')
slot_continue_button.click()
print("Selected slot and continued to next page")
'''
try:
time.sleep(4)
#time.sleep(6)
outofstock_select_continue = driver.find_element_by_css_selector('[class="a-button-text"]')
outofstock_select_continue.click()
print("Passed out of stock")
except NoSuchElementException:
pass
'''
try:
time.sleep(4)
#time.sleep(6)
#payment_select_continue = driver.find_element_by_xpath('/html/body/div[5]/div[1]/div[2]/div[2]/div[4]/div/form/div[3]/div[1]/div[2]/div/div/div/div[1]/span/span/input')
payment_select_continue = driver.find_element_by_xpath('//*[@id="continue-top"]')
payment_select_continue.click()
print("Payment method selected")
#time.sleep(4)
time.sleep(6)
try:
review_select_continue = driver.find_element_by_xpath('/html/body/div[5]/div[1]/div[2]/form/div/div/div/div[2]/div/div[1]/div/div[1]/div/span/span/input')
review_select_continue.click()
print("Order reviewed")
except NoSuchElementException:
review_select_continue = driver.find_element_by_xpath('/html/body/div[5]/div[1]/div[2]/form/div/div/div/div[2]/div[2]/div/div[1]/span/span/input')
review_select_continue.click()
print("Order reviewed")
print("Order Placed!")
winsound.Beep(freq, duration)
except NoSuchElementException:
print("Found a slot but it got taken, run script again.")
winsound.Beep(freq, duration)
time.sleep(1400)
def getWFSlot(productUrl):
headers = {
'User-Agent': 'Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2228.0 Safari/537.36',
}
duration = 1000
freq = 440
driver = webdriver.Chrome()
driver.get(productUrl)
driver.maximize_window()
html = driver.page_source
soup = bs4.BeautifulSoup(html, "html.parser")
time.sleep(60)
no_open_slots = True
while no_open_slots:
driver.refresh()
print("refreshed")
html = driver.page_source
soup = bs4.BeautifulSoup(html, "html.parser")
time.sleep(4)
slot_patterns = ['Next available', '1-hour delivery windows', '2-hour delivery windows']
try:
next_slot_text = str([x.text for x in soup.findAll('h4', class_ ='ufss-slotgroup-heading-text a-text-normal')])
if any(next_slot_text in slot_pattern for slot_pattern in slot_patterns):
print('SLOTS OPEN!')
winsound.Beep(freq, duration)
no_open_slots = False
autoCheckout(driver)
except AttributeError:
pass
try:
slot_opened_text = "Not available"
all_dates = soup.findAll("div", {"class": "ufss-date-select-toggle-text-availability"})
for each_date in all_dates:
if slot_opened_text not in each_date.text:
print('SLOTS OPEN!')
winsound.Beep(freq, duration)
no_open_slots = False
autoCheckout(driver)
except AttributeError:
pass
try:
no_slot_pattern = 'No delivery windows available. New windows are released throughout the day.'
if no_slot_pattern == soup.find('h4', class_ ='a-alert-heading').text:
print("NO SLOTS!")
except AttributeError:
print('SLOTS OPEN!')
winsound.Beep(freq, duration)
no_open_slots = False
autoCheckout(driver)
getWFSlot('https://www.amazon.com/gp/buy/shipoptionselect/handlers/display.html?hasWorkingJavascript=1')