Skip to content

Commit cba1d35

Browse files
committed
Update the ReadMe
1 parent d90dd66 commit cba1d35

1 file changed

Lines changed: 11 additions & 8 deletions

File tree

README.md

Lines changed: 11 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -72,8 +72,8 @@ sb.quit()
7272
```
7373

7474
<p align="center">
75-
<img src="https://seleniumbase.github.io/cdn/img/results_normal.jpg" width="578" alt="BrowserScan Test Results: Normal">
76-
<br><em>(All BrowserScan bot-detection checks were passed successfully.)</em></br>
75+
<img src="https://seleniumbase.github.io/cdn/img/results_normal.jpg" width="588" alt="BrowserScan Test Results: Normal">
76+
<br><em>(All BrowserScan bot-detection tests passed successfully.)</em></br>
7777
</p>
7878

7979
<b>🎭 Here's an example script that uses <a href="https://github.com/seleniumbase/SeleniumBase/blob/master/examples/cdp_mode/playwright/ReadMe.md"><span translate="no">Stealthy Playwright Mode</span></a>:</b><br />(Playwright connects to a stealthy SeleniumBase browser session.)
@@ -82,21 +82,24 @@ sb.quit()
8282
from playwright.sync_api import sync_playwright
8383
from seleniumbase import sb_cdp
8484

85-
sb = sb_cdp.Chrome()
85+
sb = sb_cdp.Chrome(guest=True)
8686
endpoint_url = sb.get_endpoint_url()
8787

8888
with sync_playwright() as p:
8989
browser = p.chromium.connect_over_cdp(endpoint_url)
9090
page = browser.contexts[0].pages[0]
91-
page.goto("https://browserscan.net/bot-detection")
92-
93-
sb.sleep(3)
94-
sb.quit()
91+
page.goto("https://bot.sannysoft.com/")
92+
page.wait_for_timeout(500)
9593
```
9694

95+
<p align="center">
96+
<img src="https://seleniumbase.github.io/other/sannysoft_success.jpg" width="470" alt="All Sannysoft tests passed successfully">
97+
<br><em>(All Sannysoft bot-detection tests passed successfully.)</em></br>
98+
</p>
99+
97100
--------
98101

99-
<b>**📝** The Browserscan example can be expanded into a <a href="https://github.com/seleniumbase/SeleniumBase/blob/master/examples/cdp_mode/raw_cdp_browserscan.py">test demo</a>:</b><br />(Assertions added and a few elements highlighted with JavaScript)
102+
<b>**📝** The Browserscan example can be expanded into a <a href="https://github.com/seleniumbase/SeleniumBase/blob/master/examples/cdp_mode/raw_cdp_browserscan.py">test demo</a>:</b><br />(Assertions added and elements highlighted with JavaScript.)
100103

101104
```python
102105
from seleniumbase import sb_cdp

0 commit comments

Comments
 (0)