It appears the 'Set Selenium Timeout' keyword does not actually set the timeout. The code as currently written
defset_selenium_timeout(self, seconds):
# . . .old_timeout=self.get_selenium_timeout()
self._timeout_in_secs=robot.utils.timestr_to_secs(seconds)
returnold_timeoutdefset_selenium_implicit_wait(self, seconds):
# . . .
and the code as I suspect it should be
defset_selenium_timeout(self, seconds):
# . . .old_timeout=self.get_selenium_timeout()
self._timeout_in_secs=robot.utils.timestr_to_secs(seconds)
forbrowserinself._cache.browsers:
browser.set_script_timeout(self._timeout_in_secs)
returnold_timeoutdefset_selenium_implicit_wait(self, seconds):
# . . .
Also it appears this feature is untested within the rf-s2l acceptance tests.
It appears the 'Set Selenium Timeout' keyword does not actually set the timeout. The code as currently written
and the code as I suspect it should be
Also it appears this feature is untested within the rf-s2l acceptance tests.