On this page
AndroidSocket
AndroidSocket is a way to communicate with a process launched on the AndroidDevice. Use androidDevice.open() to open a socket.
Methods
close
Closes the socket.
Usage
await androidSocket.close();
Returns
write
Writes some data
to the socket.
Usage
await androidSocket.write(data);
Arguments
data
BufferData to write.
Returns
Events
on('close')
Emitted when the socket is closed.
Usage
androidSocket.on('close', data => {});
on('data')
Emitted when data is available to read from the socket.
Usage
androidSocket.on('data', data => {});
Event data
© 2024 Microsoft
Licensed under the Apache License, Version 2.0.
https://playwright.dev/docs/api/class-androidsocket