File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change 4
4
5
5
<b >🎨 The following SeleniumBase solutions utilize this feature:</b >
6
6
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 >)
8
8
9
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
10
@@ -64,7 +64,7 @@ def add_js_link(driver, js_link):
64
64
body.appendChild(script);
65
65
}
66
66
injectJS("%s ");""" )
67
- js_link = escape_quotes_if_needed(js_link)
67
+ js_link = escape_quotes_if_needed(js_link) # From js_utils.py
68
68
driver.execute_script(script_to_add_js % js_link)
69
69
```
70
70
@@ -95,7 +95,7 @@ def add_css_link(driver, css_link):
95
95
head.appendChild(link);
96
96
}
97
97
injectCSS("%s ");""" )
98
- css_link = escape_quotes_if_needed(css_link)
98
+ css_link = escape_quotes_if_needed(css_link) # From js_utils.py
99
99
driver.execute_script(script_to_add_css % css_link)
100
100
```
101
101
You can’t perform that action at this time.
0 commit comments