We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 213f634 commit 73c296fCopy full SHA for 73c296f
test/resources/testlibs/CustomSeleniumKeywords.py
@@ -5,6 +5,9 @@
5
class CustomSeleniumKeywords(Selenium2Library):
6
7
def __init__(self, *args, **kwargs):
8
+ """Share `Selenium2Library`'s cache of browsers, so that
9
+ we don't have to open a separate browser instance for the `Run On Failure Keyword Only Called Once`
10
+ test."""
11
ret = super(CustomSeleniumKeywords, self).__init__(*args, **kwargs)
12
self._cache = BuiltIn().get_library_instance("Selenium2Library")._cache
13
0 commit comments