Skip to content

Commit b09f365

Browse files
committed
adding link to standalone-server in pydocs
updated py api docs
1 parent 148cc9a commit b09f365

File tree

7 files changed

+6
-6
lines changed

7 files changed

+6
-6
lines changed

docs/api/py/_modules/selenium/webdriver/remote/webdriver.html

+1-1
Original file line numberDiff line numberDiff line change
@@ -421,7 +421,7 @@ <h1>Source code for selenium.webdriver.remote.webdriver</h1><div class="highligh
421421
<span class="sd"> - css_selector: The css selector to use when finding elements.</span>
422422

423423
<span class="sd"> :Usage:</span>
424-
<span class="sd"> driver.find_element_by_css_selector(&#39;#foo&#39;)</span>
424+
<span class="sd"> driver.find_elements_by_css_selector(&#39;.foo&#39;)</span>
425425
<span class="sd"> &quot;&quot;&quot;</span>
426426
<span class="k">return</span> <span class="bp">self</span><span class="o">.</span><span class="n">find_elements</span><span class="p">(</span><span class="n">by</span><span class="o">=</span><span class="n">By</span><span class="o">.</span><span class="n">CSS_SELECTOR</span><span class="p">,</span> <span class="n">value</span><span class="o">=</span><span class="n">css_selector</span><span class="p">)</span>
427427
</div>

docs/api/py/_sources/index.txt

+1-1
Original file line numberDiff line numberDiff line change
@@ -107,7 +107,7 @@ For normal WebDriver scripts (non-Remote), the Java server is not needed.
107107

108108
However, to use Selenium Webdriver Remote or the legacy Selenium API (Selenium-RC), you need to also run the Selenium server. The server requires a Java Runtime Environment (JRE).
109109

110-
Download the server separately, from: <URL TO BE DETERMINED>
110+
Download the server separately, from: http://selenium-release.storage.googleapis.com/2.40/selenium-server-standalone-2.40.0.jar
111111

112112
Run the server from the command line::
113113

docs/api/py/index.html

+1-1
Original file line numberDiff line numberDiff line change
@@ -152,7 +152,7 @@ <h2>Example 2:<a class="headerlink" href="#example-2" title="Permalink to this h
152152
<h2>Selenium Server (optional)<a class="headerlink" href="#selenium-server-optional" title="Permalink to this headline"></a></h2>
153153
<p>For normal WebDriver scripts (non-Remote), the Java server is not needed.</p>
154154
<p>However, to use Selenium Webdriver Remote or the legacy Selenium API (Selenium-RC), you need to also run the Selenium server. The server requires a Java Runtime Environment (JRE).</p>
155-
<p>Download the server separately, from: &lt;URL TO BE DETERMINED&gt;</p>
155+
<p>Download the server separately, from: <a class="reference external" href="http://selenium-release.storage.googleapis.com/2.40/selenium-server-standalone-2.40.0.jar">http://selenium-release.storage.googleapis.com/2.40/selenium-server-standalone-2.40.0.jar</a></p>
156156
<p>Run the server from the command line:</p>
157157
<div class="highlight-python"><pre>java -jar selenium-server-standalone-2.40.0.jar</pre>
158158
</div>

docs/api/py/objects.inv

-18 Bytes
Binary file not shown.

docs/api/py/webdriver_remote/selenium.webdriver.remote.webdriver.html

+1-1
Original file line numberDiff line numberDiff line change
@@ -500,7 +500,7 @@ <h3>Navigation</h3>
500500
</ul>
501501
</td>
502502
</tr>
503-
<tr class="field-even field"><th class="field-name">Usage :</th><td class="field-body"><p class="first last">driver.find_element_by_css_selector(&#8216;#foo&#8217;)</p>
503+
<tr class="field-even field"><th class="field-name">Usage :</th><td class="field-body"><p class="first last">driver.find_elements_by_css_selector(&#8216;.foo&#8217;)</p>
504504
</td>
505505
</tr>
506506
</tbody>

py/README

+1-1
Original file line numberDiff line numberDiff line change
@@ -107,7 +107,7 @@ For normal WebDriver scripts (non-Remote), the Java server is not needed.
107107

108108
However, to use Selenium Webdriver Remote or the legacy Selenium API (Selenium-RC), you need to also run the Selenium server. The server requires a Java Runtime Environment (JRE).
109109

110-
Download the server separately, from: <URL TO BE DETERMINED>
110+
Download the server separately, from: http://selenium-release.storage.googleapis.com/2.40/selenium-server-standalone-2.40.0.jar
111111

112112
Run the server from the command line::
113113

py/docs/source/index.rst

+1-1
Original file line numberDiff line numberDiff line change
@@ -107,7 +107,7 @@ For normal WebDriver scripts (non-Remote), the Java server is not needed.
107107

108108
However, to use Selenium Webdriver Remote or the legacy Selenium API (Selenium-RC), you need to also run the Selenium server. The server requires a Java Runtime Environment (JRE).
109109

110-
Download the server separately, from: <URL TO BE DETERMINED>
110+
Download the server separately, from: http://selenium-release.storage.googleapis.com/2.40/selenium-server-standalone-2.40.0.jar
111111

112112
Run the server from the command line::
113113

0 commit comments

Comments
 (0)