forked from bhlewka/Marketplace
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmarketplace.py
241 lines (186 loc) · 7.6 KB
/
marketplace.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
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
from selenium import webdriver
from selenium.webdriver.firefox.firefox_binary import FirefoxBinary
from cookies import loadCookies, saveCookies
from localfilehandlers import *
import time
import os
import pyautogui
import pickle
pyautogui.FAILSAFE = True
# Settings
USE_COOKIES = True
# These are some global sleep variables, for each of the expected sleep times
# May need to be changed depending how fast or slow a persons computer is
# For now we will pick some conservative times, so things should work out of the box
# For tabbing, arrow keys, and interacting with a single webpage
shortSleep = 0.2
# For all other loading, including file uploads, page refreshes or reloads, etc.
longSleep = 5
def openBrowser():
# Init the browser, in this case firefox
# Take us to facebook.com and maximize the window
# Checks for local geckodriver executable first
if os.path.exists("geckodriver"):
localLinuxPath = os.path.abspath('geckodriver')
browser = webdriver.Firefox(executable_path=localLinuxPath)
else:
browser = webdriver.Firefox()
return browser
# Logs us into facebook
# Returns the browser object
def login(creds, browser):
if browser == None:
browser = openBrowser()
browser.maximize_window()
browser.get('https://www.facebook.com')
# Login by finding the correct fields by ID
browser.find_element_by_id('email').send_keys(creds[0])
browser.find_element_by_id("pass").send_keys(creds[1])
browser.find_element_by_id('u_0_b').click()
# Wait for page load
time.sleep(longSleep)
# Use this to close the silly remember login details button that appears every time
pyautogui.press('escape')
time.sleep(shortSleep)
return browser
def loginWithCookies(creds, cookies):
browser = openBrowser()
browser.get('https://www.facebook.com/favicon.ico')
for cookie in cookies:
browser.add_cookie(cookie)
browser.get('https://www.facebook.com/friends')
time.sleep(longSleep)
# Check if cookie usage resulted in a login
if 'login' in browser.current_url:
login(creds, browser)
return browser
# Post the ad
def postAd(browser, directory):
title, price, description = getAdInformation(directory)
print("Posting ad for \"%s\"" % title)
# Allow page to load
time.sleep(longSleep)
# OLD Click the "Sell Something" button by using the absolute path to the element
# Allow page to load
# browser.find_element_by_xpath('/html/body/div[1]/div[3]/div[1]/div/div/div[1]/div/div/div/button').click()
# time.sleep(longSleep)
#browser.find_element_by_xpath('/html/body/div[1]/div/div[1]/div[1]/div[4]/div/div/div[1]/div/div[3]/div[2]/div[2]/div/div/div[2]/div[1]/span/div/a')
# OLD Click the "Item for Sale" button using the link text
# Allow page to load
#browser.find_element_by_link_text("Item for Sale").click()
#time.sleep(longSleep)
browser.get('https://www.facebook.com/marketplace/create/item')
time.sleep(longSleep)
# Click the category field by using the absolute path
browser.find_element_by_xpath("/html/body/div[6]/div"
"[2]/div/div/div/div/div[2]/div/div/div[1]/div[1]/div/span/span/label/input").click()
time.sleep(shortSleep)
# Type the item category, then navigate to the title
# In the future, this could also be an element in the ad text
pyautogui.typewrite('Furniture')
time.sleep(shortSleep)
pyautogui.press("down")
time.sleep(shortSleep)
pyautogui.press('enter')
time.sleep(shortSleep)
pyautogui.press('tab')
time.sleep(shortSleep)
pyautogui.press('tab')
# Type the item name, then navigate to the price
pyautogui.typewrite(title)
time.sleep(shortSleep)
pyautogui.press('tab')
# Type the item price, then navigate to the description
pyautogui.typewrite(price)
time.sleep(shortSleep)
pyautogui.press('tab')
time.sleep(shortSleep)
pyautogui.press('tab')
# Type the item description, then navigate to the add images button
pyautogui.typewrite(description)
time.sleep(shortSleep)
pyautogui.press('tab')
time.sleep(shortSleep)
pyautogui.press('tab')
time.sleep(shortSleep)
# Select the images button
# Allow file selection window to load
# Leave lots of time for slower computers
pyautogui.press('enter')
time.sleep(longSleep)
# Get the image paths from the ad folder
images = getAdImagePaths(directory)
# Create the file string and enter it into the image selection window
# Allow files to be uploaded
# I think really slow internet could mess this part up, so we will give it some generous load time (5 seconds)
files = ""
for imagePath in images:
files += '"' + imagePath + '" '
time.sleep(longSleep)
pyautogui.typewrite(files)
time.sleep(shortSleep)
pyautogui.press('enter')
time.sleep(longSleep)
# Scroll down so next button is in view to be clicked
pyautogui.press("pagedown")
time.sleep(shortSleep)
# Click next button
# Allow page to load
browser.find_element_by_xpath(
"/html/body/div[6]/div[2]/div/div/div/div/div[2]/div/div/div[3]/div/div[2]/div/div/span/button/span").click()
time.sleep(longSleep)
# Press enter on post
pyautogui.press('enter')
# Wait for things to finalize before refreshing
time.sleep(longSleep)
# Refresh the page
# I think this helps because the element names/paths get changed each consecutive sell on the same page
browser.refresh()
time.sleep(longSleep)
def main():
credentials = getCredentials()
# For each username/password provided, post all the ads
for creds in credentials:
if USE_COOKIES:
cookies = loadCookies(creds)
browser = loginWithCookies(creds, cookies)
else:
browser = login(creds)
# Find and click the marketplace button by ID
# Allow page to load
#browser.find_element_by_id('navItem_1606854132932955').click()
browser.get("https://www.facebook.com/marketplace/?ref=bookmark")
time.sleep(5)
# Click the "Selling" button, to take us to the selling page
#path = '/html/body/div[1]/div[3]/div[1]/div/div/div[1]/div/div/div/div[2]/div/a[3]'
#browser.find_element_by_xpath(path).click()
browser.get("https://www.facebook.com/marketplace/create/")
# Here is where we could get it to automatically delete all ads we currently have listed
# Currently must be done by hand
# Retrieve the name of each ad folder
ads = getAds()
if len(ads) == 0:
print("No ads detected.")
return
else:
print("Detected %d ads." % len(ads))
# For each ad folder, post the ad
# Make this a separate function probably soon
for directory in ads:
try:
postAd(browser, directory)
except:
# If something goes wrong with the ad, clicking an element, or anything else
# Just restart and go to the next ad
print("Failed to post an ad")
browser.refresh()
time.sleep(longSleep)
# Here we could either logout and login on the new account
# But for now we will just close the browser and open a new one and start over
# Closing a browser shouldn't need a longSleep, but who knows
if USE_COOKIES:
saveCookies(browser, creds)
browser.close()
time.sleep(shortSleep)
print("All ads posted on all accounts, safe to close windows and stuff")
main()