Skip to content

Commit fb2db6e

Browse files
committed
Update a ReadMe
1 parent eb2f770 commit fb2db6e

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

help_docs/js_package_manager.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44

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

7-
<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/dialog_boxes/ReadMe.md">🛂 Dialog Boxes</a>
7+
🎦 (<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

99
<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>
1010

@@ -64,7 +64,7 @@ def add_js_link(driver, js_link):
6464
body.appendChild(script);
6565
}
6666
injectJS("%s");""")
67-
js_link = escape_quotes_if_needed(js_link)
67+
js_link = escape_quotes_if_needed(js_link) # From js_utils.py
6868
driver.execute_script(script_to_add_js % js_link)
6969
```
7070

@@ -95,7 +95,7 @@ def add_css_link(driver, css_link):
9595
head.appendChild(link);
9696
}
9797
injectCSS("%s");""")
98-
css_link = escape_quotes_if_needed(css_link)
98+
css_link = escape_quotes_if_needed(css_link) # From js_utils.py
9999
driver.execute_script(script_to_add_css % css_link)
100100
```
101101

0 commit comments

Comments
 (0)