Skip to content

Commit c8f3fa0

Browse files
committed
Update the ReadMe
1 parent 24cb7a1 commit c8f3fa0

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

README.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@
4848
--------
4949

5050
<details>
51-
<summary>▶️ (expand) How is SeleniumBase different from raw Selenium?</summary>
51+
<summary> (expand) ▶️ How is SeleniumBase different from raw Selenium?</summary>
5252
<div>
5353

5454
✔️ 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.
@@ -735,7 +735,7 @@ pytest user_agent_test.py --agent="Mozilla/5.0 (Nintendo 3DS; U; ; en) Version/1
735735
<h3><img src="https://seleniumbase.io/img/green_logo.png" title="SeleniumBase" width="32" /> Production Environments & Integrations:</h3>
736736
737737
<details>
738-
<summary>▶️ (expand) Here are some things you can do to set up a production environment for your testing.</summary>
738+
<summary> (expand) ▶️ Here are some things you can do to set up a production environment for your testing.</summary>
739739
740740
<ul>
741741
<li>You can set up a <a href="https://jenkins.io/">Jenkins</a> build server for running tests at regular intervals. For a real-world Jenkins example of headless browser automation in action, check out the <a href="https://github.com/seleniumbase/SeleniumBase/blob/master/integrations/azure/jenkins/ReadMe.md">SeleniumBase Jenkins example on Azure</a> or the <a href="https://github.com/seleniumbase/SeleniumBase/blob/master/integrations/google_cloud/ReadMe.md">SeleniumBase Jenkins example on Google Cloud</a>.</li>
@@ -904,7 +904,7 @@ def is_there_a_cloaked_klingon_ship_on_this_page():
904904
```
905905
906906
<details>
907-
<summary>▶️ (expand) is_text_visible(text, selector) # is text visible on a page</summary>
907+
<summary> (expand) ▶️ is_text_visible(text, selector) # is text visible on a page</summary>
908908
909909
```python
910910
def get_mirror_universe_captain_picard_superbowl_ad(superbowl_year):
@@ -969,7 +969,7 @@ self.activate_jquery()
969969
```
970970
971971
<details>
972-
<summary>▶️ (expand) Here are some examples of using jQuery in your scripts.</summary>
972+
<summary> (expand) ▶️ Here are some examples of using jQuery in your scripts.</summary>
973973
974974
```python
975975
self.execute_script("jQuery, window.scrollTo(0, 600)") # Scrolling the page
@@ -998,7 +998,7 @@ self.execute_script("return jQuery('textarea')[2].value") # Returns the css "va
998998
🔵 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.
999999
10001000
<details>
1001-
<summary>▶️ (expand) In this example, JavaScript creates a referral button on a page, which is then clicked.</summary>
1001+
<summary> (expand) ▶️ In this example, JavaScript creates a referral button on a page, which is then clicked.</summary>
10021002
10031003
```python
10041004
start_page = "https://xkcd.com/465/"

0 commit comments

Comments
 (0)