@@ -89,7 +89,7 @@ def open_browser(self, url=None, browser='firefox', alias=None,
8989 Headless Chrome are new additions in SeleniumLibrary 3.1.0
9090 and require Selenium 3.8.0 or newer.
9191
92- After opening the browser, it is possible to use optional
92+ After opening the browser, it is possible to use optional
9393 ``url`` to navigate the browser to the desired address.
9494
9595 Optional ``alias`` is an alias given for this browser instance and
@@ -205,7 +205,7 @@ def open_browser(self, url=None, browser='firefox', alias=None,
205205 ``options``.
206206
207207 Example the ``options`` argument can be used to launch Chomium-based
208- applications which utilize the
208+ applications which utilize the
209209 [https://bitbucket.org/chromiumembedded/cef/wiki/UsingChromeDriver|Chromium Embedded Framework]
210210 . To lauch Chomium-based application, use ``options`` to define
211211 `binary_location` attribute and use `add_argument` method to define
@@ -270,7 +270,7 @@ def open_browser(self, url=None, browser='firefox', alias=None,
270270 accepting an instance of the `selenium.webdriver.FirefoxProfile`
271271 and support defining FirefoxProfile with methods and
272272 attributes are new in SeleniumLibrary 4.0.
273-
273+
274274 Making ``url`` optional is new in SeleniumLibrary 4.1.
275275
276276 The ``executable_path`` argument is new in SeleniumLibrary 4.2.
@@ -304,8 +304,7 @@ def _make_new_browser(self, url=None, browser='firefox', alias=None,
304304 try :
305305 driver .get (url )
306306 except Exception :
307- self .debug ("Opened browser with session id %s but failed "
308- "to open url '%s'." % (driver .session_id , url ))
307+ self .debug ("Opened browser with session id %s but failed to open url '%s'." % (driver .session_id , url ))
309308 raise
310309 self .debug ('Opened browser with session id %s.' % driver .session_id )
311310 return index
0 commit comments