Home | History | Annotate | Download | only in pyautolib

Lines Matching refs:remote

149     # Set up remote proxies, if they were requested.
151 self.remote = None
155 self.remote = _REMOTE_PROXY[0]
229 # instances on the remote sides and set them up too.
230 for remote in self.remotes:
231 remote.CreateTarget(self)
232 remote.setUp()
254 for remote in self.remotes:
255 remote.tearDown()
3986 """Returns a new remote WebDriver instance.
3994 selenium.webdriver.remote.webdriver.WebDriver instance
5411 """Class for PyAuto remote method calls.
5414 connection with another machine and make remote PyAuto calls. The RemoteProxy
5417 The remote host acts as a dumb executor that receives method call requests,
5421 The remote host should be running the same version of PyAuto as the proxy.
5427 remote = pyauto._RemoteProxy(('127.0.0.1', 7410))
5428 remote.NavigateToURL('http://www.google.com')
5429 title = remote.GetActiveTabTitle()
5457 """Registers the methods and creates a remote instance of a target.
5459 Any RPC calls will then be made on the remote target instance. Note that the
5460 remote instance will be a brand new instance and will have none of the state
5468 # Make remote-call versions of all remote_class methods.
5479 raise self.RemoteException('Error sending remote method call request.')
5491 raise self.RemoteException('%s raised by remote client: %s' %
5558 """Connect to remote PyAuto instances using a RemoteProxy.
5562 assert not _REMOTE_PROXY, 'Already connected to a remote host.'
5570 """Start a remote PyAuto instance on the local machine."""
5690 '', '--remote-host', type='string', default=None,
5691 help='Connect to remote hosts for remote automation. If "localhost" '
5692 '"127.0.0.1" is specified, a remote host will be launched '