Skip to content

Commit 146c374

Browse files
committed
Update the ReadMe
1 parent 233d70b commit 146c374

File tree

1 file changed

+6
-1
lines changed

1 file changed

+6
-1
lines changed

README.md

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -56,8 +56,9 @@ pytest test_demo_site.py
5656

5757
<p align="left"><a href="https://github.com/seleniumbase/SeleniumBase/blob/master/examples/test_demo_site.py"><img src="https://seleniumbase.io/cdn/gif/demo_page_4.gif" width="400" alt="SeleniumBase Demo Mode" title="SeleniumBase Test" /></a></p>
5858

59+
<div></div>
5960
<details>
60-
<summary> ▶️ <u>How is SeleniumBase different from raw Selenium?</u> (click to expand)</summary>
61+
<summary> ▶️ How is SeleniumBase different from raw Selenium? (click to expand)</summary>
6162
<div>
6263

6364
<p>✔️ SeleniumBase is a Python test framework for the Selenium/WebDriver browser automation library. This framework incorporates test-runners such as <code>pytest</code>, <code>nosetests</code>, and <code>behave</code> to provide organized structure, test discovery, test execution, test state (<i>eg. passed, failed, or skipped</i>), and command-line options for changing default settings (<i>such as which browser to use</i>). With raw Selenium, you would need to set up your own options-parser for configuring tests from the command-line.</p>
@@ -741,6 +742,7 @@ pytest user_agent_test.py --agent="Mozilla/5.0 (Nintendo 3DS; U; ; en) Version/1
741742
<a id="utilizing_advanced_features"></a>
742743
<h3><img src="https://seleniumbase.io/img/green_logo2.png" title="SeleniumBase" width="32" /> Production Environments & Integrations:</h3>
743744
745+
<div></div>
744746
<details>
745747
<summary> ▶️ Here are some things you can do to set up a production environment for your testing. (click to expand)</summary>
746748
@@ -910,6 +912,7 @@ def is_there_a_cloaked_klingon_ship_on_this_page():
910912
return False
911913
```
912914
915+
<div></div>
913916
<details>
914917
<summary> ▶️ is_text_visible(text, selector) # is text visible on a page (click to expand)</summary>
915918
@@ -975,6 +978,7 @@ You'd know this because the web page would contain something like the following
975978
self.activate_jquery()
976979
```
977980
981+
<div></div>
978982
<details>
979983
<summary> ▶️ Here are some examples of using jQuery in your scripts. (click to expand)</summary>
980984
@@ -1004,6 +1008,7 @@ self.execute_script("return jQuery('textarea')[2].value") # Returns the css "va
10041008
10051009
🔵 Some websites have a restrictive [Content Security Policy](https://developer.mozilla.org/en-US/docs/Web/HTTP/CSP) to prevent users from loading jQuery and other external libraries onto their websites. If you need to use jQuery or another JS library on such a website, add ``--disable-csp`` on the command-line.
10061010
1011+
<div></div>
10071012
<details>
10081013
<summary> ▶️ In this example, JavaScript creates a referral button on a page, which is then clicked. (click to expand)</summary>
10091014

0 commit comments

Comments
 (0)