Skip to content

Commit

Permalink
adding link to standalone-server in pydocs
Browse files Browse the repository at this point in the history
updated py api docs
  • Loading branch information
lukeis committed Feb 28, 2014
1 parent 148cc9a commit b09f365
Show file tree
Hide file tree
Showing 7 changed files with 6 additions and 6 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -421,7 +421,7 @@ <h1>Source code for selenium.webdriver.remote.webdriver</h1><div class="highligh
<span class="sd"> - css_selector: The css selector to use when finding elements.</span>

<span class="sd"> :Usage:</span>
<span class="sd"> driver.find_element_by_css_selector(&#39;#foo&#39;)</span>
<span class="sd"> driver.find_elements_by_css_selector(&#39;.foo&#39;)</span>
<span class="sd"> &quot;&quot;&quot;</span>
<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>
</div>
Expand Down
2 changes: 1 addition & 1 deletion docs/api/py/_sources/index.txt
Original file line number Diff line number Diff line change
Expand Up @@ -107,7 +107,7 @@ For normal WebDriver scripts (non-Remote), the Java server is not needed.

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).

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

Run the server from the command line::

Expand Down
2 changes: 1 addition & 1 deletion docs/api/py/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -152,7 +152,7 @@ <h2>Example 2:<a class="headerlink" href="#example-2" title="Permalink to this h
<h2>Selenium Server (optional)<a class="headerlink" href="#selenium-server-optional" title="Permalink to this headline"></a></h2>
<p>For normal WebDriver scripts (non-Remote), the Java server is not needed.</p>
<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>
<p>Download the server separately, from: &lt;URL TO BE DETERMINED&gt;</p>
<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>
<p>Run the server from the command line:</p>
<div class="highlight-python"><pre>java -jar selenium-server-standalone-2.40.0.jar</pre>
</div>
Expand Down
Binary file modified docs/api/py/objects.inv
Binary file not shown.
Original file line number Diff line number Diff line change
Expand Up @@ -500,7 +500,7 @@ <h3>Navigation</h3>
</ul>
</td>
</tr>
<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>
<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>
</td>
</tr>
</tbody>
Expand Down
2 changes: 1 addition & 1 deletion py/README
Original file line number Diff line number Diff line change
Expand Up @@ -107,7 +107,7 @@ For normal WebDriver scripts (non-Remote), the Java server is not needed.

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).

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

Run the server from the command line::

Expand Down
2 changes: 1 addition & 1 deletion py/docs/source/index.rst
Original file line number Diff line number Diff line change
Expand Up @@ -107,7 +107,7 @@ For normal WebDriver scripts (non-Remote), the Java server is not needed.

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).

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

Run the server from the command line::

Expand Down

0 comments on commit b09f365

Please sign in to comment.