class Playwright::AndroidSocket

‘method: AndroidDevice.open`

to open a socket.
‘AndroidSocket` is a way to communicate with a process launched on the `AndroidDevice`. Use

def close

Closes the socket.
def close
  raise NotImplementedError.new('close is not implemented yet.')
end

def write(data)

Writes some `data` to the socket.
def write(data)
  raise NotImplementedError.new('write is not implemented yet.')
end