def start(self, *args, **kwargs):
        "Initiates a sauce tunnel followed by a selenium instance."

        self.start_sauce_tunnel()

        SeleniumBase.start(self, *args, **kwargs)
示例#2
0
 def start(self, record_events=False):
     self._speclenium_client =  \
         ServerProxy('http://%s:%d' % (self.host, self.SPECLENIUM_PORT))
     self._speclenium_client.start(self.browserStartCommand, record_events)
     selenium.start(self)