Skip to content

Commit 39682e2

Browse files
committed
Update examples
1 parent 5d834bf commit 39682e2

File tree

6 files changed

+9
-12
lines changed

6 files changed

+9
-12
lines changed

examples/cdp_mode/raw_easyjet.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@
2626
sb.sleep(3.5)
2727
sb.connect()
2828
sb.sleep(0.5)
29-
if "easyjet.com" not in sb.get_current_url():
29+
if "/buy/flights" not in sb.get_current_url():
3030
sb.driver.close()
3131
sb.switch_to_newest_window()
3232
days = sb.find_elements("div.flight-grid-day")

examples/cdp_mode/raw_hyatt.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@
2323
'div[data-booking-status="BOOKABLE"] [class*="HotelCard_header"]'
2424
)
2525
hotel_prices = sb.cdp.select_all(
26-
'div[data-booking-status="BOOKABLE"] div.rate-currency'
26+
'div[data-booking-status="BOOKABLE"] div.rate'
2727
)
2828
sb.assert_true(len(hotel_names) == len(hotel_prices))
2929
print("Hyatt Hotels in %s:" % location)

examples/cdp_mode/raw_nike.py

-1
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,6 @@
1212
elements = sb.cdp.select_all('ul[data-testid*="products"] figure .details')
1313
if elements:
1414
print('**** Found results for "%s": ****' % search)
15-
print("------------------ >>>")
1615
for element in elements:
1716
print("* " + element.text)
1817
sb.sleep(2)

examples/github_test.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -16,4 +16,4 @@ def test_github(self):
1616
self.assert_text("SeleniumBase", "strong a")
1717
self.js_click('a[title="seleniumbase"]')
1818
self.slow_click('td[class*="large"] a[title="fixtures"]')
19-
self.assert_element('td[class*="large"] a[title="base_case.py"]')
19+
self.highlight('td[class*="large"] a[title="base_case.py"]', loops=8)

examples/hack_the_planet.py

+4-8
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55

66
class HackTests(BaseCase):
77
def test_all_your_base_are_belong_to_us(self):
8-
self.set_window_size(1220, 740)
8+
self.set_window_size(1250, 740)
99
ayb = "ALL YOUR BASE"
1010
abtu = "ARE BELONG TO US"
1111
aybabtu = "%s %s" % (ayb, abtu)
@@ -22,8 +22,7 @@ def test_all_your_base_are_belong_to_us(self):
2222
self.set_text_content("#n-currentevents a", "BASE")
2323
self.set_text_content("#n-randompage a", "ARE")
2424
self.set_text_content("#n-aboutsite a", "BELONG")
25-
self.set_text_content("#n-contactpage a", "TO")
26-
self.set_text_content("#n-sitesupport a", "US")
25+
self.set_text_content("#n-contactpage a", "TO US")
2726
self.highlight("h1#firstHeading", loops=5, scroll=False)
2827
zoom_in = "#ca-history a{zoom: 1.8;-moz-transform: scale(1.8);}"
2928
self.add_css_style(zoom_in)
@@ -86,11 +85,8 @@ def test_all_your_base_are_belong_to_us(self):
8685
self.highlight('form[role="search"]', loops=8)
8786

8887
self.open("https://github.com/features/actions")
89-
self.set_text_content("h2.h2-mktg", aybabtu)
90-
self.set_text_content("a.btn-large-mktg", aybabtu)
91-
self.highlight("h2.h2-mktg", loops=8, scroll=False)
92-
self.scroll_to("h2.h2-mktg")
93-
self.highlight("a.btn-large-mktg", loops=8, scroll=False)
88+
self.set_text_content("#hero-section-brand-heading", aybabtu)
89+
self.highlight("#hero-section-brand-heading", loops=14, scroll=False)
9490

9591
self.open("https://dev.to/top/infinity")
9692
self.click_if_visible('button[aria-label="Close campaign banner"]')

examples/raw_recaptcha.py

+2
Original file line numberDiff line numberDiff line change
@@ -2,13 +2,15 @@
22

33
with SB(uc=True, test=True) as sb:
44
url = "https://seleniumbase.io/apps/recaptcha"
5+
sb.activate_cdp_mode(url)
56
sb.uc_gui_handle_captcha() # Try with TAB + SPACEBAR
67
sb.assert_element("img#captcha-success", timeout=3)
78
sb.set_messenger_theme(location="top_left")
89
sb.post_message("SeleniumBase wasn't detected", duration=3)
910

1011
with SB(uc=True, test=True) as sb:
1112
url = "https://seleniumbase.io/apps/recaptcha"
13+
sb.activate_cdp_mode(url)
1214
sb.uc_gui_click_captcha('iframe[src*="/recaptcha/"]')
1315
sb.assert_element("img#captcha-success", timeout=3)
1416
sb.set_messenger_theme(location="top_left")

0 commit comments

Comments
 (0)