Skip to content

Commit

Permalink
updating py version to 2.37.1, updating docs
Browse files Browse the repository at this point in the history
  • Loading branch information
lukeis committed Oct 21, 2013
1 parent 3b8f4c8 commit 769905d
Show file tree
Hide file tree
Showing 15 changed files with 34 additions and 17 deletions.
3 changes: 2 additions & 1 deletion docs/api/py/_modules/selenium/webdriver/common/keys.html
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,8 @@ <h1>Source code for selenium.webdriver.common.keys</h1><div class="highlight"><p
<span class="n">NULL</span> <span class="o">=</span> <span class="s">&#39;</span><span class="se">\ue000</span><span class="s">&#39;</span>
<span class="n">CANCEL</span> <span class="o">=</span> <span class="s">&#39;</span><span class="se">\ue001</span><span class="s">&#39;</span> <span class="c"># ^break</span>
<span class="n">HELP</span> <span class="o">=</span> <span class="s">&#39;</span><span class="se">\ue002</span><span class="s">&#39;</span>
<span class="n">BACK_SPACE</span> <span class="o">=</span> <span class="s">&#39;</span><span class="se">\ue003</span><span class="s">&#39;</span>
<span class="n">BACKSPACE</span> <span class="o">=</span> <span class="s">&#39;</span><span class="se">\ue003</span><span class="s">&#39;</span>
<span class="n">BACK_SPACE</span> <span class="o">=</span> <span class="s">&#39;</span><span class="se">\ue003</span><span class="s">&#39;</span> <span class="c"># alias</span>
<span class="n">TAB</span> <span class="o">=</span> <span class="s">&#39;</span><span class="se">\ue004</span><span class="s">&#39;</span>
<span class="n">CLEAR</span> <span class="o">=</span> <span class="s">&#39;</span><span class="se">\ue005</span><span class="s">&#39;</span>
<span class="n">RETURN</span> <span class="o">=</span> <span class="s">&#39;</span><span class="se">\ue006</span><span class="s">&#39;</span>
Expand Down
7 changes: 3 additions & 4 deletions docs/api/py/_modules/selenium/webdriver/remote/webdriver.html
Original file line number Diff line number Diff line change
Expand Up @@ -75,10 +75,9 @@ <h1>Source code for selenium.webdriver.remote.webdriver</h1><div class="highligh
<span class="kn">from</span> <span class="nn">selenium.webdriver.common.html5.application_cache</span> <span class="kn">import</span> <span class="n">ApplicationCache</span>

<span class="k">try</span><span class="p">:</span>
<span class="nb">bytes</span>
<span class="k">except</span> <span class="ne">NameError</span><span class="p">:</span> <span class="c"># Python 2.x compatibility</span>
<span class="nb">bytes</span> <span class="o">=</span> <span class="nb">str</span>
<span class="nb">str</span> <span class="o">=</span> <span class="nb">unicode</span>
<span class="nb">str</span> <span class="o">=</span> <span class="nb">basestring</span>
<span class="k">except</span> <span class="ne">NameError</span><span class="p">:</span>
<span class="k">pass</span>

<div class="viewcode-block" id="WebDriver"><a class="viewcode-back" href="../../../../webdriver_remote/selenium.webdriver.remote.webdriver.html#selenium.webdriver.remote.webdriver.WebDriver">[docs]</a><span class="k">class</span> <span class="nc">WebDriver</span><span class="p">(</span><span class="nb">object</span><span class="p">):</span>
<span class="sd">&quot;&quot;&quot;</span>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -78,6 +78,11 @@ <h1>Source code for selenium.webdriver.remote.webelement</h1><div class="highlig
<span class="kn">from</span> <span class="nn">selenium.webdriver.common.by</span> <span class="kn">import</span> <span class="n">By</span>
<span class="kn">from</span> <span class="nn">selenium.webdriver.common.keys</span> <span class="kn">import</span> <span class="n">Keys</span>

<span class="k">try</span><span class="p">:</span>
<span class="nb">str</span> <span class="o">=</span> <span class="nb">basestring</span>
<span class="k">except</span> <span class="ne">NameError</span><span class="p">:</span>
<span class="k">pass</span>


<div class="viewcode-block" id="WebElement"><a class="viewcode-back" href="../../../../webdriver_remote/selenium.webdriver.remote.webelement.html#selenium.webdriver.remote.webelement.WebElement">[docs]</a><span class="k">class</span> <span class="nc">WebElement</span><span class="p">(</span><span class="nb">object</span><span class="p">):</span>
<span class="sd">&quot;&quot;&quot;Represents an HTML element.</span>
Expand Down
4 changes: 2 additions & 2 deletions docs/api/py/_sources/index.txt
Original file line number Diff line number Diff line change
Expand Up @@ -107,11 +107,11 @@ 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: http://selenium.googlecode.com/files/selenium-server-standalone-2.37.0.jar
Download the server separately, from: http://selenium.googlecode.com/files/selenium-server-standalone-2.37.1.jar

Run the server from the command line::

java -jar selenium-server-standalone-2.37.0.jar
java -jar selenium-server-standalone-2.37.1.jar

Then run your Python client scripts.

Expand Down
4 changes: 4 additions & 0 deletions docs/api/py/genindex.html
Original file line number Diff line number Diff line change
Expand Up @@ -289,6 +289,10 @@ <h2 id="B">B</h2>
</dt>


<dt><a href="webdriver/selenium.webdriver.common.keys.html#selenium.webdriver.common.keys.Keys.BACKSPACE">BACKSPACE (selenium.webdriver.common.keys.Keys attribute)</a>
</dt>


<dt><a href="webdriver_support/selenium.webdriver.support.abstract_event_listener.html#selenium.webdriver.support.abstract_event_listener.AbstractEventListener.before_change_value_of">before_change_value_of() (selenium.webdriver.support.abstract_event_listener.AbstractEventListener method)</a>
</dt>

Expand Down
4 changes: 2 additions & 2 deletions docs/api/py/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -152,9 +152,9 @@ <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: <a class="reference external" href="http://selenium.googlecode.com/files/selenium-server-standalone-2.37.0.jar">http://selenium.googlecode.com/files/selenium-server-standalone-2.37.0.jar</a></p>
<p>Download the server separately, from: <a class="reference external" href="http://selenium.googlecode.com/files/selenium-server-standalone-2.37.1.jar">http://selenium.googlecode.com/files/selenium-server-standalone-2.37.1.jar</a></p>
<p>Run the server from the command line:</p>
<div class="highlight-python"><pre>java -jar selenium-server-standalone-2.37.0.jar</pre>
<div class="highlight-python"><pre>java -jar selenium-server-standalone-2.37.1.jar</pre>
</div>
<p>Then run your Python client scripts.</p>
</div>
Expand Down
Binary file modified docs/api/py/objects.inv
Binary file not shown.
2 changes: 1 addition & 1 deletion docs/api/py/searchindex.js

Large diffs are not rendered by default.

5 changes: 5 additions & 0 deletions docs/api/py/webdriver/selenium.webdriver.common.keys.html
Original file line number Diff line number Diff line change
Expand Up @@ -81,6 +81,11 @@ <h3>Navigation</h3>
<tt class="descname">ARROW_UP</tt><em class="property"> = u'\ue013'</em><a class="headerlink" href="#selenium.webdriver.common.keys.Keys.ARROW_UP" title="Permalink to this definition"></a></dt>
<dd></dd></dl>

<dl class="attribute">
<dt id="selenium.webdriver.common.keys.Keys.BACKSPACE">
<tt class="descname">BACKSPACE</tt><em class="property"> = u'\ue003'</em><a class="headerlink" href="#selenium.webdriver.common.keys.Keys.BACKSPACE" title="Permalink to this definition"></a></dt>
<dd></dd></dl>

<dl class="attribute">
<dt id="selenium.webdriver.common.keys.Keys.BACK_SPACE">
<tt class="descname">BACK_SPACE</tt><em class="property"> = u'\ue003'</em><a class="headerlink" href="#selenium.webdriver.common.keys.Keys.BACK_SPACE" title="Permalink to this definition"></a></dt>
Expand Down
3 changes: 3 additions & 0 deletions py/CHANGES
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
Selenium 2.37.1
* fix find_elements on webelement using unicode locators and py 2.7

Selenium 2.37
* repackage with fix for Firefox native events on Linux
* fix issue with unicode By locators w/ python 2.7 #6430
Expand Down
4 changes: 2 additions & 2 deletions py/README
Original file line number Diff line number Diff line change
Expand Up @@ -107,11 +107,11 @@ 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: http://selenium.googlecode.com/files/selenium-server-standalone-2.37.0.jar
Download the server separately, from: http://selenium.googlecode.com/files/selenium-server-standalone-2.37.1.jar

Run the server from the command line::

java -jar selenium-server-standalone-2.37.0.jar
java -jar selenium-server-standalone-2.37.1.jar

Then run your Python client scripts.

Expand Down
4 changes: 2 additions & 2 deletions py/docs/source/index.rst
Original file line number Diff line number Diff line change
Expand Up @@ -107,11 +107,11 @@ 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: http://selenium.googlecode.com/files/selenium-server-standalone-2.37.0.jar
Download the server separately, from: http://selenium.googlecode.com/files/selenium-server-standalone-2.37.1.jar

Run the server from the command line::

java -jar selenium-server-standalone-2.37.0.jar
java -jar selenium-server-standalone-2.37.1.jar

Then run your Python client scripts.

Expand Down
2 changes: 1 addition & 1 deletion py/selenium/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -16,4 +16,4 @@
from selenium import selenium


__version__ = "2.37.0"
__version__ = "2.37.1"
2 changes: 1 addition & 1 deletion py/selenium/webdriver/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -29,4 +29,4 @@
from .common.touch_actions import TouchActions
from .common.proxy import Proxy

__version__ = '2.37.0'
__version__ = '2.37.1'
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@
setup_args = {
'cmdclass':{'install': install},
'name':'selenium',
'version':"2.37.0",
'version':"2.37.1",
'description':'Python bindings for Selenium',
'long_description':open(join(abspath(dirname(__file__)), "py", "README")).read(),
'url':'http://code.google.com/p/selenium/',
Expand Down

0 comments on commit 769905d

Please sign in to comment.