コード例 #1
0
    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
ファイル: speclenium_client.py プロジェクト: eeejay/specular
 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)