Skip to content

Commit 561d728

Browse files
committed
Regenerated project docs
1 parent 556e969 commit 561d728

File tree

1 file changed

+27
-19
lines changed

1 file changed

+27
-19
lines changed

docs/index.html

Lines changed: 27 additions & 19 deletions
Original file line numberDiff line numberDiff line change
@@ -14,19 +14,19 @@ <h1 class="title">SeleniumLibrary</h1>
1414
<div class="contents topic" id="contents">
1515
<p class="topic-title first">Contents</p>
1616
<ul class="simple">
17-
<li><p><a class="reference internal" href="#introduction" id="id5">Introduction</a></p></li>
18-
<li><p><a class="reference internal" href="#keyword-documentation" id="id6">Keyword documentation</a></p></li>
19-
<li><p><a class="reference internal" href="#installation" id="id7">Installation</a></p></li>
20-
<li><p><a class="reference internal" href="#browser-drivers" id="id8">Browser drivers</a></p></li>
21-
<li><p><a class="reference internal" href="#usage" id="id9">Usage</a></p></li>
22-
<li><p><a class="reference internal" href="#extending-seleniumlibrary" id="id10">Extending SeleniumLibrary</a></p></li>
23-
<li><p><a class="reference internal" href="#support" id="id11">Support</a></p></li>
24-
<li><p><a class="reference internal" href="#versions" id="id12">Versions</a></p></li>
25-
<li><p><a class="reference internal" href="#history" id="id13">History</a></p></li>
17+
<li><p><a class="reference internal" href="#introduction" id="id6">Introduction</a></p></li>
18+
<li><p><a class="reference internal" href="#keyword-documentation" id="id7">Keyword documentation</a></p></li>
19+
<li><p><a class="reference internal" href="#installation" id="id8">Installation</a></p></li>
20+
<li><p><a class="reference internal" href="#browser-drivers" id="id9">Browser drivers</a></p></li>
21+
<li><p><a class="reference internal" href="#usage" id="id10">Usage</a></p></li>
22+
<li><p><a class="reference internal" href="#extending-seleniumlibrary" id="id11">Extending SeleniumLibrary</a></p></li>
23+
<li><p><a class="reference internal" href="#support" id="id12">Support</a></p></li>
24+
<li><p><a class="reference internal" href="#versions" id="id13">Versions</a></p></li>
25+
<li><p><a class="reference internal" href="#history" id="id14">History</a></p></li>
2626
</ul>
2727
</div>
2828
<div class="section" id="introduction">
29-
<h1><a class="toc-backref" href="#id5">Introduction</a></h1>
29+
<h1><a class="toc-backref" href="#id6">Introduction</a></h1>
3030
<p><a class="reference external" href="https://github.com/robotframework/SeleniumLibrary">SeleniumLibrary</a> is a web testing library for <a class="reference external" href="http://robotframework.org">Robot Framework</a> that
3131
utilizes the <a class="reference external" href="http://seleniumhq.org">Selenium</a> tool internally. The project is hosted on <a class="reference external" href="https://github.com/robotframework/SeleniumLibrary">GitHub</a>
3232
and downloads can be found from <a class="reference external" href="https://pypi.python.org/pypi/robotframework-seleniumlibrary">PyPI</a>.</p>
@@ -44,12 +44,12 @@ <h1><a class="toc-backref" href="#id5">Introduction</a></h1>
4444
<a class="reference external image-reference" href="http://travis-ci.org/robotframework/SeleniumLibrary"><img alt="https://api.travis-ci.org/robotframework/SeleniumLibrary.png" src="https://api.travis-ci.org/robotframework/SeleniumLibrary.png" /></a>
4545
</div>
4646
<div class="section" id="keyword-documentation">
47-
<h1><a class="toc-backref" href="#id6">Keyword documentation</a></h1>
47+
<h1><a class="toc-backref" href="#id7">Keyword documentation</a></h1>
4848
<p>See <a class="reference external" href="http://robotframework.org/SeleniumLibrary/SeleniumLibrary.html">keyword documentation</a> for available keywords and more information
4949
about the library in general.</p>
5050
</div>
5151
<div class="section" id="installation">
52-
<h1><a class="toc-backref" href="#id7">Installation</a></h1>
52+
<h1><a class="toc-backref" href="#id8">Installation</a></h1>
5353
<p>The recommended installation method is using <a class="reference external" href="http://pip-installer.org">pip</a>:</p>
5454
<pre class="literal-block">pip install --upgrade robotframework-seleniumlibrary</pre>
5555
<p>Running this command installs also the latest Selenium and Robot Framework
@@ -77,7 +77,7 @@ <h1><a class="toc-backref" href="#id7">Installation</a></h1>
7777
using <span class="docutils literal">pip</span> see <a class="reference external" href="http://pip-installer.org">its own documentation</a>.</p>
7878
</div>
7979
<div class="section" id="browser-drivers">
80-
<h1><a class="toc-backref" href="#id8">Browser drivers</a></h1>
80+
<h1><a class="toc-backref" href="#id9">Browser drivers</a></h1>
8181
<p>After installing the library, you still need to install browser and
8282
operating system specific browser drivers for all those browsers you
8383
want to use in tests. These are the exact same drivers you need to use with
@@ -91,9 +91,17 @@ <h1><a class="toc-backref" href="#id8">Browser drivers</a></h1>
9191
New browser driver versions are released to support features in
9292
new browsers, fix bug, or otherwise, and you need to keep an eye on them
9393
to know when to update drivers you use.</p>
94+
<p>Alternatively, you can use a tool called <a class="reference external" href="https://github.com/omenia/webdrivermanager">WebdriverManager</a> which can
95+
find the latest version or when required, any version of appropriate
96+
webdrivers for you and then download and link/copy it into right
97+
location. Tool can run on all major operating systems and supports
98+
downloading of Chrome, Firefox, Opera &amp; Edge webdrivers.</p>
99+
<p>Here's an example:</p>
100+
<pre class="code bash literal-block"><code>pip install webdrivermanager
101+
webdrivermanager firefox chrome --linkpath /usr/local/bin</code></pre>
94102
</div>
95103
<div class="section" id="usage">
96-
<h1><a class="toc-backref" href="#id9">Usage</a></h1>
104+
<h1><a class="toc-backref" href="#id10">Usage</a></h1>
97105
<p>To use SeleniumLibrary in Robot Framework tests, the library needs to
98106
first be imported using the <span class="docutils literal">Library</span> setting as any other library.
99107
The library accepts some import time arguments, which are documented
@@ -144,13 +152,13 @@ <h1><a class="toc-backref" href="#id9">Usage</a></h1>
144152
</span><span class="generic subheading">Welcome Page Should Be Open</span><span class="punctuation">
145153
</span><span class="name function">Title Should Be</span><span class="punctuation"> </span><span class="literal string">Welcome Page</span></code></pre>
146154
<p>The above example is a slightly modified version of an example in a
147-
<a class="reference external" href="https://bitbucket.org/robotframework/webdemo">demo project</a> that illustrates using Robot Framework and SeleniumLibrary.
155+
<a class="reference external" href="https://github.com/robotframework/WebDemo">demo project</a> that illustrates using Robot Framework and SeleniumLibrary.
148156
See the demo for more examples that you can also execute on your own
149157
machine. For more information about Robot Framework test data syntax in
150158
general see the <a class="reference external" href="http://robotframework.org/robotframework/latest/RobotFrameworkUserGuide.html">Robot Framework User Guide</a>.</p>
151159
</div>
152160
<div class="section" id="extending-seleniumlibrary">
153-
<h1><a class="toc-backref" href="#id10">Extending SeleniumLibrary</a></h1>
161+
<h1><a class="toc-backref" href="#id11">Extending SeleniumLibrary</a></h1>
154162
<p>Before creating your own library which extends the <span class="docutils literal">SeleniumLibrary</span>, please consider would
155163
the extension be also useful also for general usage. If it could be useful also for general
156164
usage, please create a new issue describing the enhancement request and even better if the
@@ -162,7 +170,7 @@ <h1><a class="toc-backref" href="#id10">Extending SeleniumLibrary</a></h1>
162170
for more details about the available methods and for examples how the library can be extended.</p>
163171
</div>
164172
<div class="section" id="support">
165-
<h1><a class="toc-backref" href="#id11">Support</a></h1>
173+
<h1><a class="toc-backref" href="#id12">Support</a></h1>
166174
<p>If the provided documentation is not enough, there are various support forums
167175
available:</p>
168176
<ul class="simple">
@@ -175,7 +183,7 @@ <h1><a class="toc-backref" href="#id11">Support</a></h1>
175183
</ul>
176184
</div>
177185
<div class="section" id="versions">
178-
<h1><a class="toc-backref" href="#id12">Versions</a></h1>
186+
<h1><a class="toc-backref" href="#id13">Versions</a></h1>
179187
<p>SeleniumLibrary has over the years lived under SeleniumLibrary and
180188
Selenium2Library names and different library versions have supported
181189
different Selenium and Python versions. This is summarized in the table
@@ -225,7 +233,7 @@ <h1><a class="toc-backref" href="#id12">Versions</a></h1>
225233
</table>
226234
</div>
227235
<div class="section" id="history">
228-
<h1><a class="toc-backref" href="#id13">History</a></h1>
236+
<h1><a class="toc-backref" href="#id14">History</a></h1>
229237
<p>SeleniumLibrary originally used the Selenium Remote Controller (RC) API.
230238
When Selenium 2 was introduced with the new but backwards incompatible
231239
WebDriver API, SeleniumLibrary kept using Selenium RC and separate

0 commit comments

Comments
 (0)