-
Notifications
You must be signed in to change notification settings - Fork 1.3k
/
Copy pathuc_presentation_4.py
1071 lines (1037 loc) · 44.1 KB
/
uc_presentation_4.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
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
# https://www.youtube.com/watch?v=Mr90iQmNsKM
from contextlib import suppress
from seleniumbase import BaseCase
from seleniumbase import SB
BaseCase.main(__name__, __file__)
class UCPresentationClass(BaseCase):
def test_presentation_4(self):
self.open("data:,")
self.set_window_position(4, 40)
self._output_file_saves = False
self.create_presentation(theme="serif", transition="fade")
self.add_slide(
'<img src="https://seleniumbase.io/other/uc4_title.jpg"'
' width="100%">'
)
self.add_slide(
"<h4>This continues my Undetectable Automation series:</h4>"
'<img src="https://seleniumbase.io/other/ua_1_details.jpg"'
' width="100%">'
)
self.begin_presentation(filename="uc_presentation.html")
with suppress(Exception):
self.open("https://www.bostoncodecamp.com/CC37/info")
self.create_tour(theme="hopscotch")
self.add_tour_step(
"<h2>Good Afternoon and Welcome!</h2>", 'h1.wow'
)
self.add_tour_step(
"<h4>PSA: Visit our sponsors later.</h4>",
'[href*="/Sponsors"]',
)
self.add_tour_step(
"<h4>Let's check out the schedule...</h4>",
'[href*="/Schedule/SessionGrid"]'
)
self.play_tour()
with suppress(Exception):
self.open(
"https://www.bostoncodecamp.com/CC37/Schedule/SessionGrid"
)
self.highlight("h2", loops=8)
if self.is_element_visible('[data-sessionid="765448"]'):
self.highlight('div[data-sessionid="765448"]', loops=10)
self.create_tour(theme="driverjs")
self.add_tour_step(
"<h2>Here we are</h2>", '[data-sessionid="765448"]'
)
self.play_tour()
self.click('a[onclick*="765448"]')
self.create_tour(theme="hopscotch")
self.add_tour_step(
"<h2>What to expect</h2>",
"div.sz-modal-session",
alignment="left",
)
self.play_tour()
self.create_presentation(theme="serif", transition="none")
self.add_slide(
"<h2>Last time...</h2>"
)
self.add_slide(
"<h4>Last time...</h4>"
'<img src="https://seleniumbase.io/other/uc3_title.jpg"'
' width="100%">'
)
self.add_slide(
"<h4>This time...</h4>"
'<img src="https://seleniumbase.io/other/anti_bots.jpg"'
' width="100%">'
)
self.add_slide(
"Note: There are different kinds of reCAPTCHA,<br />"
"and not all of them are created equal.<br />"
'<img src="https://seleniumbase.io/other/recaptcha_v2a.png"'
' width="100%">'
)
self.add_slide(
"<h4>This is what happens when you fail reCAPTCHA:</h4>"
'<img src="https://seleniumbase.io/other/recaptcha_v2b.png"'
' width="100%">'
)
self.add_slide(
"<h4>This is what happens when you fail hCAPTCHA:</h4>"
'<img src="https://seleniumbase.io/other/hcaptcha_bunny.jpg"'
' width="70%">'
)
self.add_slide(
"<h4>If you like puppies, hCAPTCHA has you covered:</h4>"
'<img src="https://seleniumbase.io/other/hcaptcha_puppy.jpg"'
' width="70%">'
)
self.add_slide(
"<h4>This is what happens when some anti-bots detect you:</h4>"
'<img src="https://seleniumbase.io/other/you_are_blocked.jpg"'
' width="90%">'
)
self.add_slide(
"<h4>And this is what happens when Gandalf blocks you:</h4>"
'<img src="https://seleniumbase.io/other/gandalf.jpg"'
' width="90%">'
)
self.add_slide(
"<h4>No joke... There's a Hobbit CAPTCHA</h4>"
'<img src="https://seleniumbase.io/other/hobbit_captcha.jpg"'
' width="90%">'
)
self.add_slide(
"<h3>Important Notice:</h3>"
"(Know the laws and legal implications!)"
'<img src="https://seleniumbase.io/other/legal_scraping.jpg"'
' width="100%">'
)
self.add_slide(
"<p>🔹 <b>By the end of this presentation...</b> 🔹</p><hr /><br />"
"✅ You'll learn which anti-bot systems work,<br />"
"and which ones don't. (Hint: Most don't work.)<br /><br />"
"✅ There will be multiple live demos."
"<br /><br />"
"✅ You'll learn how to bypass weak defenses."
"<br /><br />"
"✅ You'll learn powerful web-scraping techniques."
"</mk-1></p>"
)
self.add_slide(
"<h4>But first, a little about me...</h4>"
'<img src="https://seleniumbase.io/other/profile_t1.png"'
' width="48%">'
)
self.add_slide(
"<p><b>About me: (Michael Mintz)</b></p>\n"
"<ul>\n"
"<li><mk-0>I created the <b>SeleniumBase</b> framework."
"</mk-0></li>\n"
"<li><mk-1>I lead the Automation Team at <b>iboss</b>."
"</mk-1></li>\n"
"</ul>",
image="https://seleniumbase.io/other/iboss_booth.png",
)
self.add_slide(
"<h2>In my spare time,</h2>"
"<h2>I may be found...</h2>"
)
self.add_slide(
"<h4>Spending time with entrepreneurs...</h4>"
'<img src="https://seleniumbase.io/other/with_hs_founders.jpg"'
' width="85%">'
)
self.add_slide(
"<h4>Spending time with celebrities...</h4>"
'<img src="https://seleniumbase.io/other/with_frakes.jpg"'
' width="52%">'
)
self.add_slide(
"<h4>Spending time with politicians...</h4>"
'<img src="https://seleniumbase.io/other/with_tulsi.jpg"'
' width="50%">'
)
self.add_slide(
"<h4>Spending time with philanthropists...</h4>"
'<img src="https://seleniumbase.io/other/with_jeff.jpg"'
' width="80%">'
)
self.add_slide(
"<h4>Speaking at conferences...</h4>"
'<img src="https://seleniumbase.io/other/mintz_present.jpg"'
' width="90%">'
)
self.add_slide(
"<h4>Attending conferences as a guest...</h4>"
'<img src="https://seleniumbase.io/other/at_ms_build.jpg"'
' width="75%">'
)
self.add_slide(
"<h4>Jet-skiing in Key West...</h4>"
'<img src="https://seleniumbase.io/other/on_jetski.jpg"'
' width="100%">'
)
self.add_slide(
"<h4>And working on SeleniumBase...</h4>"
'<img src="https://seleniumbase.io/other/sb_star_history.jpg"'
' width="85%">'
)
self.add_slide(
"<h4>Enough about me...</h4><br />"
"<h3>Let's begin the presentation!</h3><br /><br />"
)
self.add_slide(
'<img src="https://seleniumbase.io/other/blue_chrome.jpg"'
' width="50%">'
)
self.add_slide(
'<img src="https://seleniumbase.io/other/cdp_logo.jpg"'
' width="80%">'
)
self.add_slide(
'<img src="https://seleniumbase.io/other/blue_chrome.jpg"'
' width="30%">'
'<img src="https://seleniumbase.io/other/cdp_definition.jpg"'
' width="100%">'
"<br />"
)
self.add_slide(
'<img src="https://seleniumbase.io/other/se_pw_cdp.jpg"'
' width="100%">'
)
self.add_slide(
"Playwright using CDP"
'<img src="https://seleniumbase.io/other/pw_cdp.jpg"'
' width="100%">'
)
self.add_slide(
"Selenium using CDP"
'<img src="https://seleniumbase.io/other/se_cdp.jpg"'
' width="100%">'
)
self.add_slide(
"<p>Microsoft still supports Selenium,<br />"
"even though they have Playwright.</p>"
'<img src="https://seleniumbase.io/other/ms_edge_webdriver.jpg"'
' width="100%">'
)
self.add_slide(
'<img src="https://seleniumbase.io/other/twenty_se.jpg"'
' width="100%">'
)
self.add_slide(
"As a birthday gift, BrightData invested a lot of money into "
"Selenium (making them an official sponsor)."
'<img src="https://seleniumbase.io/other/bd_invests_in_se.jpg"'
' width="80%">'
)
self.add_slide(
"That's great news for the Selenium community!"
'<img src="https://seleniumbase.io/other/se_community.jpg"'
' width="68%">'
)
self.add_slide(
"Now, let's get back to CDP..."
'<img src="https://seleniumbase.io/other/cdp_logo.jpg"'
' width="80%">'
)
self.add_slide(
"There are lots of GitHub repos using CDP.<br />"
"(This repo tracks some of them)"
'<img src="https://seleniumbase.io/other/awesome_cdp.jpg"'
' width="70%">'
)
self.add_slide(
"The first major Python implementation of CDP:"
'<img src="https://seleniumbase.io/other/python_cdp.jpg"'
' width="100%">'
)
self.add_slide(
'<img src="https://seleniumbase.io/other/mark_haase.jpg"'
' width="100%">'
)
self.add_slide(
"PyCDP was the key ingredient to stealthy automation."
'<img src="https://seleniumbase.io/other/cdp_in_nodriver.jpg"'
' width="100%">'
)
self.add_slide(
'<img src="https://seleniumbase.io/other/nodriver.jpg"'
' width="100%">'
)
self.add_slide(
'<img src="https://seleniumbase.io/other/undetected_ch.jpg"'
' width="100%">'
)
self.add_slide(
"In addition to using CDP for controlling Chrome in a"
" stealthy way, you can also achieve stealth by using"
" tools that can control the mouse and keyboard.<br /><br />"
"<code>PyAutoGUI</code> is one such tool:"
'<img src="https://seleniumbase.io/other/pyautogui_tree.jpg"'
' width="100%">'
)
self.add_slide(
'<img src="https://seleniumbase.io/other/al_sweigart.jpg"'
' width="100%">'
)
self.add_slide(
"PyAutoGUI requires a headed browser to work.<br /><br />"
" Since most Linux machines have headless displays that"
" don't support headed browsers, an external tool called"
" Xvfb must be used in order to simulate a headed browser"
" in a headless Linux environment..."
)
self.add_slide(
'<img src="https://seleniumbase.io/other/xvfb_info.jpg"'
' width="56%">'
)
self.add_slide(
"<p><mk-0>To have a completely stealthy framework"
" for clicking CAPTCHAs & bypassing anti-bot systems,"
" you need:</mk-0><br /><hr />"
"</p><ul>\n"
'<li><mk-1>A framework that uses a "regular" browser<br />'
'(to hide evidence of automation activity)'
'</mk-1>'
"</li><br />\n"
"<li><mk-2>CDP capabilities for performing stealthy actions"
"</mk-2></li><br />\n"
"<li><mk-3>PyAutoGUI for performing tricky actions<br />"
"(eg. clicking Shadow-root CAPTCHAs)</mk-3>"
"</li><br />\n"
"<li><mk-4>Xvfb integration for headless Linux systems</mk-4>"
"</li>\n</ul><br />\n"
)
self.add_slide(
"SeleniumBase CDP Mode simplifies all that for you:<br /><br />"
'<img src="https://seleniumbase.io/other/cdp_in_sb.jpg"'
' width="100%">'
)
self.add_slide(
'<img src="https://seleniumbase.io/other/sb_on_github.jpg"'
' width="100%">'
)
self.add_slide(
'<img src="https://seleniumbase.io/other/sb_on_discord.jpg"'
' width="100%">'
)
self.add_slide(
'<img src="https://seleniumbase.io/other/detect_antibots.jpg"'
' width="92%">'
)
self.add_slide(
'<img src="https://seleniumbase.io/other/sc_en_invite.jpg"'
' width="100%">'
)
self.add_slide(
"List of sites with their invisible anti-bot services:"
'<img src="https://seleniumbase.io/other/sites_to_antibots.jpg"'
' width="100%">'
)
self.add_slide(
"<h3><mk-0>Let's get started with live demos of bypassing"
" physical CAPTCHAs:</mk-0></h3>"
)
self.begin_presentation(filename="uc_presentation.html")
self.create_presentation(theme="serif", transition="none")
self.add_slide(
"<h3>Up first...</h3><hr /><br /><br /><h4><mk-0><code>"
"planetminecraft.com/account/sign_in/"
"</code></mk-0></h4><br /><br /><br /><br />"
)
self.begin_presentation(filename="uc_presentation.html")
with SB(uc=True, test=True, locale="en") as sb:
url = "www.planetminecraft.com/account/sign_in/"
sb.activate_cdp_mode(url)
sb.sleep(2)
sb.cdp.gui_click_element("#turnstile-widget div")
sb.sleep(2)
self.create_presentation(theme="serif", transition="none")
self.add_slide(
"<h3>Up next...</h3><hr /><br /><br /><h4><mk-0><code>"
"cloudflare.com/login"
"</code></mk-0></h4><br /><br /><br /><br />"
)
self.begin_presentation(filename="uc_presentation.html")
with SB(uc=True, test=True, locale="en") as sb:
url = "https://www.cloudflare.com/login"
sb.activate_cdp_mode(url)
sb.sleep(3)
sb.uc_gui_click_captcha()
sb.sleep(2.5)
self.create_presentation(theme="serif", transition="none")
self.add_slide(
"<h3>Up next...</h3><hr /><br /><br /><h4><mk-0><code>"
"gitlab.com/users/sign_in"
"</code></mk-0></h4><br /><br /><br /><br />"
)
self.begin_presentation(filename="uc_presentation.html")
with SB(uc=True, test=True, locale="en") as sb:
url = "https://gitlab.com/users/sign_in"
sb.activate_cdp_mode(url)
sb.sleep(2)
sb.uc_gui_click_captcha()
sb.assert_text("Username", '[for="user_login"]', timeout=3)
sb.assert_element('label[for="user_login"]')
sb.highlight('button:contains("Sign in")')
sb.highlight('h1:contains("GitLab.com")')
sb.post_message("SeleniumBase wasn't detected", duration=8)
self.create_presentation(theme="serif", transition="none")
self.add_slide(
"<p><mk-0><b>The code for the previous live demo:</b></mk-0></p>"
"<hr /><br />",
code=(
"<mk-1>from seleniumbase import SB</mk-1>\n\n"
"<mk-2>with SB(uc=True) as sb:</mk-2>\n"
'<mk-3> url = "https://gitlab.com/users/sign_in"</mk-3>\n'
"<mk-4> sb.activate_cdp_mode(url)</mk-4>\n"
"<mk-5> sb.sleep(2)</mk-5>\n"
"<mk-6> sb.uc_gui_click_captcha()</mk-6>\n\n"
"<mk-7> ...</mk-7>\n\n\n\n\n"
),
)
self.add_slide(
"<p><b>The code for the previous live demo:</b></p>"
"<hr /><br />",
code=(
"from seleniumbase import SB\n\n"
"with SB(uc=True) as sb:\n"
' url = "https://gitlab.com/users/sign_in"\n'
" sb.activate_cdp_mode(url)\n"
" sb.sleep(2)\n"
" sb.uc_gui_click_captcha()\n\n"
'<mk-1> sb.assert_text("Username", \'[for="user_login"]\','
' timeout=3)</mk-1>\n'
'<mk-2> sb.assert_element(\'[for="user_login"]\')</mk-2>\n'
'<mk-3> sb.set_messenger_theme(location="bottom_center")'
'</mk-3>\n'
'<mk-4> sb.post_message("SeleniumBase wasn\'t detected!")'
'</mk-4>\n'
),
)
self.add_slide(
"<h3>Up next...</h3><hr /><br /><br /><h4><mk-0><code>"
"bing.com/turing/captcha/challenge"
"</code></mk-0></h4><br /><br /><br /><br />"
)
self.begin_presentation(filename="uc_presentation.html")
with SB(uc=True, test=True, locale="en") as sb:
url = "https://www.bing.com/turing/captcha/challenge"
sb.activate_cdp_mode(url)
sb.sleep(1)
sb.uc_gui_click_captcha()
sb.sleep(2.5)
self.create_presentation(theme="serif", transition="none")
self.add_slide("<h2>Having fun yet?!?</h2>")
self.add_slide(
"<h4>If you're not yet concerned about online security,<br />"
" then you probably need to see more live demos...</h4>")
self.add_slide(
"<h3><mk-0>Time for live demos of bypassing<br />"
"some invisible anti-bot services:</mk-0></h3>"
)
self.add_slide(
"<h3>Up next...</h3><hr /><br /><br /><h4><mk-0><code>"
"pokemon.com/us"
"</code></mk-0></h4><br />"
"(Protected by Imperva / Incapsula)"
"<br /><br /><br />"
)
self.begin_presentation(filename="uc_presentation.html")
with SB(uc=True, test=True, locale="en", ad_block=True) as sb:
url = "https://www.pokemon.com/us"
sb.activate_cdp_mode(url)
sb.sleep(3.2)
sb.cdp.click("button#onetrust-accept-btn-handler")
sb.sleep(1.2)
sb.cdp.click("a span.icon_pokeball")
sb.sleep(2.5)
sb.cdp.click('b:contains("Show Advanced Search")')
sb.sleep(2.5)
sb.cdp.click('span[data-type="type"][data-value="electric"]')
sb.sleep(0.5)
sb.scroll_into_view("a#advSearch")
sb.sleep(0.5)
sb.cdp.mouse_click("a#advSearch")
sb.sleep(1.2)
sb.cdp.click('img[src*="img/pokedex/detail/025.png"]')
sb.cdp.assert_text("Pikachu", 'div[class*="title"]')
sb.cdp.assert_element('img[alt="Pikachu"]')
sb.cdp.scroll_into_view("div.pokemon-ability-info")
sb.sleep(1.2)
sb.cdp.flash('div[class*="title"]')
sb.cdp.flash('img[alt="Pikachu"]')
sb.cdp.flash("div.pokemon-ability-info")
name = sb.cdp.get_text("label.styled-select")
info = sb.cdp.get_text("div.version-descriptions p.active")
print("\n\n*** %s: ***\n* %s" % (name, info))
sb.sleep(2)
sb.cdp.highlight_overlay("div.pokemon-ability-info")
sb.sleep(2)
sb.cdp.click('a[href="https://www.pokemon.com/us/play-pokemon/"]')
sb.sleep(0.6)
sb.cdp.click('h3:contains("Find an Event")')
location = "Concord, MA, USA"
sb.cdp.type('input[data-testid="location-search"]', location)
sb.sleep(1.5)
sb.cdp.click(
"div.autocomplete-dropdown-container div.suggestion-item"
)
sb.sleep(0.6)
sb.cdp.click('img[alt="search-icon"]')
sb.sleep(2)
events = sb.cdp.select_all('div[data-testid="event-name"]')
print("\n*** Pokemon events near %s: ***" % location)
for event in events:
print("* " + event.text)
sb.sleep(2)
self.create_presentation(theme="serif", transition="none")
self.add_slide(
"<h3>Up next...</h3><hr /><br /><br /><h4><mk-0><code>"
"walmart.com"
"</code></mk-0></h4><br />"
"(Protected by Akamai + PerimeterX)"
"<br /><br /><br />"
)
self.begin_presentation(filename="uc_presentation.html")
with SB(uc=True, test=True, ad_block=True) as sb:
url = "https://www.walmart.com/"
sb.activate_cdp_mode(url)
sb.sleep(2.5)
sb.cdp.click_if_visible('[data-automation-id*="close-mark"]')
sb.cdp.mouse_click('input[aria-label="Search"]')
sb.sleep(1.2)
search = "Settlers of Catan Board Game"
required_text = "Catan"
sb.cdp.press_keys('input[aria-label="Search"]', search + "\n")
sb.sleep(3.8)
sb.cdp.remove_elements('[data-testid="skyline-ad"]')
print('*** Walmart Search for "%s":' % search)
print(' (Results must contain "%s".)' % required_text)
unique_item_text = []
items = sb.cdp.find_elements('div[data-testid="list-view"]')
for item in items:
if required_text in item.text:
description = item.querySelector(
'[data-automation-id="product-price"] + span'
)
if (
description
and description.text not in unique_item_text
):
unique_item_text.append(description.text)
print("* " + description.text)
price = item.querySelector(
'[data-automation-id="product-price"]'
)
if price:
price_text = price.text
price_text = (
price_text.split("current price Now ")[-1]
)
price_text = price_text.split("current price ")[-1]
price_text = price_text.split(" ")[0]
print(" (" + price_text + ")")
self.create_presentation(theme="serif", transition="none")
self.add_slide(
"<h3>Up next...</h3><hr /><br /><br /><h4><mk-0><code>"
"albertsons.com/recipes/"
"</code></mk-0></h4><br />"
"(Protected by Imperva / Incapsula)"
"<br /><br /><br />"
)
self.begin_presentation(filename="uc_presentation.html")
with SB(uc=True, test=True, locale="en") as sb:
url = "https://www.albertsons.com/recipes/"
sb.activate_cdp_mode(url)
sb.sleep(2.5)
sb.remove_element("div > div > article")
sb.cdp.scroll_into_view('input[type="search"]')
sb.cdp.click_if_visible("button.banner-close-button")
sb.cdp.click("input#search-suggestion-input")
sb.sleep(0.2)
search = "Avocado Smoked Salmon"
required_text = "Salmon"
sb.cdp.press_keys("input#search-suggestion-input", search)
sb.sleep(0.8)
sb.cdp.click("#suggestion-0 a span")
sb.sleep(3.2)
sb.cdp.click_if_visible("button.banner-close-button")
sb.sleep(1.2)
print('\n\n*** Albertsons Search for "%s":' % search)
print(' (Results must contain "%s".)' % required_text)
unique_item_text = []
item_selector = 'a[href*="/meal-plans-recipes/shop/"]'
info_selector = 'span[data-test-id*="recipe-thumb-title"]'
items = sb.cdp.find_elements(
"%s %s" % (item_selector, info_selector)
)
for item in items:
sb.sleep(0.03)
item.scroll_into_view()
sb.sleep(0.025)
if required_text in item.text:
item.flash(color="44CC88")
sb.sleep(0.025)
if item.text not in unique_item_text:
unique_item_text.append(item.text)
print("* " + item.text)
self.create_presentation(theme="serif", transition="none")
self.add_slide(
"<h3>Up next...</h3><hr /><br /><br /><h4><mk-0><code>"
"easyjet.com/en/"
"</code></mk-0></h4><br />"
"(Protected by Akamai)"
"<br /><br /><br />"
)
self.begin_presentation(filename="uc_presentation.html")
with SB(uc=True, test=True, locale="en", ad_block=True) as sb:
url = "https://www.easyjet.com/en/"
sb.activate_cdp_mode(url)
sb.sleep(2.5)
sb.cdp.click_if_visible("button#ensCloseBanner")
sb.sleep(1.2)
sb.cdp.click('input[name="from"]')
sb.sleep(1.2)
sb.cdp.type('input[name="from"]', "London")
sb.sleep(0.6)
sb.cdp.click_if_visible("button#ensCloseBanner")
sb.sleep(0.6)
sb.cdp.click('span[data-testid="airport-name"]')
sb.sleep(1.2)
sb.cdp.type('input[name="to"]', "Venice")
sb.sleep(1.2)
sb.cdp.click('span[data-testid="airport-name"]')
sb.sleep(1.2)
sb.cdp.click('input[name="when"]')
sb.sleep(1.2)
sb.cdp.click(
'[data-testid="month"]:last-of-type'
' [aria-disabled="false"]'
)
sb.sleep(1.2)
sb.cdp.click(
'[data-testid="month"]:last-of-type'
' [aria-disabled="false"]'
)
sb.sleep(1.2)
sb.cdp.click('button[data-testid="submit"]')
sb.sleep(3.5)
sb.connect()
sb.sleep(4.2)
for window in sb.driver.window_handles:
sb.switch_to_window(window)
if "/buy/flights" in sb.get_current_url():
break
sb.click_if_visible("button#ensCloseBanner")
days = sb.find_elements('div[class*="FlightGridLayout_column"]')
for day in days:
if not day.text.strip():
continue
print(
"\n\n**** " + " ".join(day.text.split("\n")[0:2]) + " ****"
)
fares = day.find_elements(
"css selector", 'button[class*="flightDet"]'
)
if not fares:
print("No flights today!")
for fare in fares:
info = fare.text
info = info.replace("LOWEST FARE\n", "")
info = info.replace("\n", " ")
print(info)
self.create_presentation(theme="serif", transition="none")
self.add_slide(
"<h3>Up next...</h3><hr /><br /><br /><h4><mk-0><code>"
"hyatt.com"
"</code></mk-0></h4><br />"
"(Protected by Kasada)"
"<br /><br /><br />"
)
self.begin_presentation(filename="uc_presentation.html")
with SB(uc=True, test=True, locale="en", ad_block=True) as sb:
url = "https://www.hyatt.com/"
sb.activate_cdp_mode(url)
sb.sleep(2.5)
sb.cdp.click_if_visible('button[aria-label="Close"]')
sb.sleep(1)
sb.cdp.click('span:contains("Explore")')
sb.sleep(1)
sb.cdp.click('a:contains("Hotels & Resorts")')
sb.sleep(3)
location = "Anaheim, CA, USA"
sb.cdp.press_keys("input#searchbox", location)
sb.sleep(2)
sb.cdp.click("div#suggestion-list ul li a")
sb.sleep(1)
sb.cdp.click('div.hotel-card-footer button')
sb.sleep(1)
sb.cdp.click('button[data-locator="find-hotels"]')
sb.sleep(5)
card_info = (
'div[data-booking-status="BOOKABLE"] [class*="HotelCard_info"]'
)
hotels = sb.cdp.select_all(card_info)
print("Hyatt Hotels in %s:" % location)
print("(" + sb.cdp.get_text("ul.b-color_text-white") + ")")
if len(hotels) == 0:
print("No availability over the selected dates!")
for hotel in hotels:
info = hotel.text.strip()
if "Avg/Night" in info and not info.startswith("Rates from"):
name = info.split(" (")[0]
name = name.split(" + ")[0].split(" Award Cat")[0]
name = name.split(" Rates from :")[0]
price = "?"
if "Rates from : " in info:
price = info.split("Rates from : ")[1]
price = price.split(" Avg/Night")[0]
print("* %s => %s" % (name, price))
self.create_presentation(theme="serif", transition="none")
self.add_slide(
"<h3>Up next...</h3><hr /><br /><br /><h4><mk-0><code>"
"bestwestern.com/en_US.html"
"</code></mk-0></h4><br />"
"(Protected by DataDome)"
"<br /><br /><br />"
)
self.begin_presentation(filename="uc_presentation.html")
with SB(uc=True, test=True, locale="en", ad_block=True) as sb:
url = "https://www.bestwestern.com/en_US.html"
sb.activate_cdp_mode(url)
sb.sleep(2.5)
sb.cdp.click_if_visible(".onetrust-close-btn-handler")
sb.sleep(1)
sb.cdp.click("input#destination-input")
sb.sleep(2)
location = "Palm Springs, CA, USA"
sb.cdp.press_keys("input#destination-input", location)
sb.sleep(1)
sb.cdp.click("ul#google-suggestions li")
sb.sleep(1)
sb.cdp.click("button#btn-modify-stay-update")
sb.sleep(4)
sb.cdp.click("label#available-label")
sb.sleep(2.5)
print("Best Western Hotels in %s:" % location)
summary_details = sb.cdp.get_text("#summary-details-column")
dates = summary_details.split("DESTINATION")[-1]
dates = dates.split(" CHECK-OUT")[0].strip() + " CHECK-OUT"
dates = dates.replace(" ", " ")
print("(Dates: %s)" % dates)
flip_cards = sb.cdp.select_all(".flipCard")
for i, flip_card in enumerate(flip_cards):
hotel = flip_card.query_selector(".hotelName")
price = flip_card.query_selector(".priceSection")
if hotel and price:
print("* %s: %s => %s" % (
i + 1, hotel.text.strip(), price.text.strip())
)
self.create_presentation(theme="serif", transition="none")
self.add_slide(
"<h3>Up next...</h3><hr /><br /><br /><h4><mk-0><code>"
"priceline.com"
"</code></mk-0></h4><br />"
"(Protected by DataDome)"
"<br /><br /><br />"
)
self.begin_presentation(filename="uc_presentation.html")
with SB(uc=True, test=True, locale="en", ad_block=True) as sb:
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)
if len(sb.cdp.get_tabs()) > 1:
sb.cdp.close_active_tab()
sb.cdp.switch_to_newest_tab()
sb.sleep(0.6)
sb.sleep(0.8)
for y in range(1, 9):
sb.scroll_to_y(y * 400)
sb.sleep(0.5)
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))
self.create_presentation(theme="serif", transition="none")
self.add_slide(
'<img src="https://seleniumbase.io/other/shatner_priceline.jpg"'
' width="60%">'
)
self.add_slide(
'<img src="https://seleniumbase.io/other/mintz_karate.jpg"'
' width="100%">'
)
self.add_slide(
'<img src="https://seleniumbase.io/other/with_shatner.jpg"'
' width="70%">'
)
self.add_slide(
'<img src="https://seleniumbase.io/other/mintz_enterprise.jpg"'
' width="100%">'
)
self.add_slide(
"<h3>Up next...</h3><hr /><br /><br /><h4><mk-0><code>"
"nike.com"
"</code></mk-0></h4><br />"
"(Protected by Shape Security)"
"<br /><br /><br />"
)
self.begin_presentation(filename="uc_presentation.html")
with SB(uc=True, test=True, locale="en", pls="none") as sb:
url = "https://www.nike.com/"
sb.activate_cdp_mode(url)
sb.sleep(2.5)
sb.cdp.click('div[data-testid="user-tools-container"]')
sb.sleep(1.5)
search = "Nike Air Force 1"
sb.cdp.press_keys('input[type="search"]', search)
sb.sleep(4)
elements = sb.cdp.select_all(
'ul[data-testid*="products"] figure .details'
)
if elements:
print('\n\n**** Found results for "%s": ****' % search)
for element in elements:
print("* " + element.text)
sb.sleep(2)
self.create_presentation(theme="serif", transition="none")
self.add_slide(
"<h3>Up next...</h3><hr /><br /><br /><h4><mk-0><code>"
"nordstrom.com"
"</code></mk-0></h4><br />"
"(Protected by Shape Security)"
"<br /><br /><br />"
)
self.begin_presentation(filename="uc_presentation.html")
with SB(uc=True, test=True, locale="en") as sb:
url = "https://www.nordstrom.com/"
sb.activate_cdp_mode(url)
sb.sleep(2.2)
sb.cdp.click("input#keyword-search-input")
sb.sleep(0.8)
search = "cocktail dresses for women teal"
sb.cdp.press_keys("input#keyword-search-input", search + "\n")
sb.sleep(2.2)
for i in range(16):
sb.cdp.scroll_down(16)
sb.sleep(0.16)
print('\n\n*** Nordstrom Search for "%s":' % search)
unique_item_text = []
items = sb.cdp.find_elements("article")
for item in items:
description = item.querySelector("article h3")
if description and description.text not in unique_item_text:
unique_item_text.append(description.text)
price_text = ""
price = item.querySelector(
'div div span[aria-hidden="true"]'
)
if price:
price_text = price.text
print("* %s (%s)" % (description.text, price_text))
self.create_presentation(theme="serif", transition="none")
self.add_slide(
"<h3>CDP is powerful, as you can see.</h3>"
"<h4>(Especially when used for stealth!)</h4>"
'<img src="https://seleniumbase.io/other/blue_chrome.jpg"'
' width="40%">'
)
self.add_slide(
"<h4>Out of the following 9 anti-bot defense systems...</h4>"
'<img src="https://seleniumbase.io/other/anti_bots.jpg"'
' width="90%">'
)
self.add_slide(
"<h4>These are weak: (Can't detect stealthy CDP)</h4>"
'<img src="https://seleniumbase.io/other/bypassable_anti_bots.jpg"'
' width="90%">'
)
self.add_slide(
"<h4>And these are strong: (CDP is detected)</h4>"
'<img src="https://seleniumbase.io/other/capable_anti_bots.jpg"'
' width="90%">'
)
self.add_slide(
"<h3><mk-0>What is Microsoft's stance<br />on stealthy CDP?</mk-0>"
"</h3><br /><br /><h3><mk-1>Officially...</mk-1></h3>"
)
self.add_slide(
'<img src="https://seleniumbase.io/other/pw_no_stealth.jpg"'
' width="100%">'
)
self.add_slide(
"<h3>What is Microsoft's stance<br />on stealthy CDP?</h3>"
"<br /><br /><h3><mk-0>Unofficially...</mk-0></h3>"
)
self.add_slide(
"<h3>There are external repos<br />using Playwright for stealth."
"</h3><br /><br /><h4>"
"And Microsoft employees are<br />endorsing them via GitHub Stars."
"</h4>"
)
self.add_slide(
'<img src="https://seleniumbase.io/other/scrapling_pw.jpg"'
' width="100%">'
)
self.add_slide(
'<img src="https://seleniumbase.io/other/ms_stars_scrapling.jpg"'
' width="100%">'
)
self.add_slide(
"And steathy CDP works well in GitHub Actions."
'<img src="https://seleniumbase.io/other/gh_actions_scrape.jpg"'
' width="100%">'
)
self.add_slide(
"Why does stealthy CDP work in GitHub Actions,<br />"
"but not in other kinds of services like AWS?"
)
self.add_slide(
"<h3>Answer:<br /><br />"
'GitHub Actions runs in a<br />'
'"residential IP address" space!'
"<br /><br /></h3>"
)
self.add_slide(
'<img src="https://seleniumbase.io/other/rp_def.jpg"'
' width="100%">'
)
self.add_slide(
"<h3>People can use residential proxies<br />"
"to get a residential IP address.</h3>"
)
self.add_slide(
"<h3>Legal info:</h3>"
'<img src="https://seleniumbase.io/other/legal_rp_scraping.jpg"'
' width="100%">'
)
self.add_slide("<h2>To summarize that...</h2>")
self.add_slide(
"<h4>Scraping public data is probably legal.<br />"
"(Think Light Side)</h4>"
'<img src="https://seleniumbase.io/other/sw_light_side.jpg"'
' width="70%">'
)
self.add_slide(
"<h4>Scraping private data is probably NOT legal.<br />"
"(Think Dark Side)</h4>"
'<img src="https://seleniumbase.io/other/sw_dark_side.jpg"'
' width="70%">'
)
self.add_slide(
"<h4>If you break local and/or international laws,<br />"
"then bounty hunters may come after you.</h4>"
'<img src="https://seleniumbase.io/other/sw_bounty_hunters.jpg"'
' width="70%">'
)
self.add_slide(
"<h3>Let's get back to SeleniumBase</h3>"
'<img src="https://seleniumbase.io/other/sb_laptop.jpg"'
' width="100%">'
)
self.add_slide(
"<h4>SeleniumBase includes a special Chrome extension:</h4>"
'<h2>The "Recorder"</h2>'
"<h4>(You can generate complete scripts with it.)</h4>"
"<h3><code>sbase recorder --uc</code></h3>"
'<img src="https://seleniumbase.io/cdn/img/'
'sb_recorder_notification.png" width="100%">'
)
self.add_slide(