class Playwright::AndroidSocket
`AndroidSocket` is a way to communicate with a process launched on the `AndroidDevice`. Use
- `method:
AndroidDevice.open
` -
to open a socket.
Public Instance Methods
close()
click to toggle source
Closes the socket.
# File lib/playwright_api/android_socket.rb, line 7 def close raise NotImplementedError.new('close is not implemented yet.') end
write(data)
click to toggle source
Writes some `data` to the socket.
# File lib/playwright_api/android_socket.rb, line 12 def write(data) raise NotImplementedError.new('write is not implemented yet.') end