forked from mdmintz/undetected-testing
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathraw_priceline.py
42 lines (41 loc) · 1.57 KB
/
raw_priceline.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
from seleniumbase import SB
with SB(uc=True, test=True, locale_code="en", ad_block=True) as sb:
window_handle = sb.driver.current_window_handle
url = "https://www.priceline.com"
sb.activate_cdp_mode(url)
sb.sleep(2.5)
sb.cdp.click('input[name="endLocation"]')
sb.sleep(1)
location = "Portland, OR, USA"
selection = "Oregon, United States" # (Dropdown option)
sb.cdp.press_keys('input[name="endLocation"]', location)
sb.sleep(1)
sb.click_if_visible('input[name="endLocation"]')
sb.sleep(0.5)
sb.cdp.click(selection)
sb.sleep(1.5)
sb.cdp.click('button[aria-label="Dismiss calendar"]')
sb.sleep(4.5)
sb.connect()
if len(sb.driver.window_handles) > 1:
sb.switch_to_window(window_handle)
sb.driver.close()
sb.sleep(0.2)
sb.switch_to_newest_window()
sb.sleep(0.6)
sb.sleep(0.8)
for y in range(1, 9):
sb.scroll_to_y(y * 400)
sb.sleep(1.25)
hotel_names = sb.find_elements('a[data-autobot-element-id*="HOTEL_NAME"]')
hotel_prices = sb.find_elements('span[font-size="4,,,5"]')
print("Priceline Hotels in %s:" % location)
print(sb.get_text('[data-testid="POPOVER-DATE-PICKER"]'))
if len(hotel_names) == 0:
print("No availability over the selected dates!")
count = 0
for i, hotel in enumerate(hotel_names):
if hotel_prices[i] and hotel_prices[i].text:
count += 1
hotel_price = "$" + hotel_prices[i].text
print("* %s: %s => %s" % (count, hotel.text, hotel_price))