Skip to content

Commit 0ef02dc

Browse files
committed
Added missing docs
1 parent 63c21cc commit 0ef02dc

File tree

1 file changed

+7
-0
lines changed

1 file changed

+7
-0
lines changed

src/SeleniumLibrary/keywords/browsermanagement.py

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -222,6 +222,11 @@ def open_browser(self, url=None, browser='firefox', alias=None,
222222
[https://docs.python.org/3/library/string.html#format-string-syntax|
223223
format string syntax].
224224
225+
Optional ``executable_path`` argument defines the path to the driver
226+
executable, example to a chromedriver or a geckodriver. If not defined
227+
it is assumed the executable is in the
228+
[https://en.wikipedia.org/wiki/PATH_(variable)|$PATH].
229+
225230
Examples:
226231
| `Open Browser` | http://example.com | Chrome | |
227232
| `Open Browser` | http://example.com | Firefox | alias=Firefox |
@@ -267,6 +272,8 @@ def open_browser(self, url=None, browser='firefox', alias=None,
267272
attributes are new in SeleniumLibrary 4.0.
268273
269274
Making ``url`` optional is new in SeleniumLibrary 4.1.
275+
276+
The ``executable_path`` argument is new in SeleniumLibrary 4.2.
270277
"""
271278
index = self.drivers.get_index(alias)
272279
if index:

0 commit comments

Comments
 (0)