Skip to content

Commit 1327af6

Browse files
committed
Update a ReadMe
1 parent fb2db6e commit 1327af6

File tree

1 file changed

+3
-5
lines changed

1 file changed

+3
-5
lines changed

help_docs/js_package_manager.md

Lines changed: 3 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,11 @@
11
## [<img src="https://seleniumbase.io/img/logo6.png" title="SeleniumBase" width="32">](https://github.com/seleniumbase/SeleniumBase/) JS Package Manager and Code Generators
22

3-
<h3>🕹️ SeleniumBase lets you load JavaScript packages from any CDN link into any website.</h3>
3+
<h3>🕹️ SeleniumBase lets you load JavaScript packages from any CDN link into any website via Python.</h3>
44

55
<b>🎨 The following SeleniumBase solutions utilize this feature:</b>
66

77
🎦 (<a href="https://github.com/seleniumbase/SeleniumBase/blob/master/help_docs/demo_mode.md">Demo Mode</a>) - 🚎 (<a href="https://github.com/seleniumbase/SeleniumBase/blob/master/examples/tour_examples/ReadMe.md">Website Tours</a>) - 🎞️ (<a href="https://github.com/seleniumbase/SeleniumBase/blob/master/examples/presenter/ReadMe.md">Presenter</a>) - 📊 (<a href="https://github.com/seleniumbase/SeleniumBase/blob/master/examples/chart_maker/ReadMe.md">Chart Maker</a> / <a href="https://github.com/seleniumbase/SeleniumBase/blob/master/examples/example_logs/ReadMe.md">Dashboard</a>) - 🛂 (<a href="https://github.com/seleniumbase/SeleniumBase/blob/master/examples/dialog_boxes/ReadMe.md">Dialog Boxes</a> / <a href="https://github.com/seleniumbase/SeleniumBase/blob/master/examples/master_qa/ReadMe.md">MasterQA</a>)
88

9-
<p><div>🕹️ In addition to loading JS packages, SeleniumBase also lets you generate JS code from Python so that you can use these packages more easily.</div></p>
10-
119
<p><div>🗺️ Here's an example of loading a website-tour library into the browser for a Google Maps tour:</div></p>
1210

1311
<img src="https://seleniumbase.io/cdn/gif/introjs_tour.gif" title="SeleniumBase Tour of Google" /><br />
@@ -64,7 +62,7 @@ def add_js_link(driver, js_link):
6462
body.appendChild(script);
6563
}
6664
injectJS("%s");""")
67-
js_link = escape_quotes_if_needed(js_link) # From js_utils.py
65+
js_link = escape_quotes_if_needed(js_link)
6866
driver.execute_script(script_to_add_js % js_link)
6967
```
7068

@@ -95,7 +93,7 @@ def add_css_link(driver, css_link):
9593
head.appendChild(link);
9694
}
9795
injectCSS("%s");""")
98-
css_link = escape_quotes_if_needed(css_link) # From js_utils.py
96+
css_link = escape_quotes_if_needed(css_link)
9997
driver.execute_script(script_to_add_css % css_link)
10098
```
10199

0 commit comments

Comments
 (0)