Important: This documentation is about an older version. It's relevant only to the release noted, many of the features and functions have been updated or replaced. Please view the current version.
Client.loadProtoset(protosetPath)
Caution
Starting on k6
v0.49, the experimental modulek6/experimental/grpchas been graduated, and its functionality is now available in thek6/net/grpcmodule. Thek6/experimental/grpcis deprecated and will be removed inv0.51.0.To migrate your scripts, replace all
k6/experimental/grpcimports withk6/net/grpc.
Loads and parses the protoset file (serialized FileDescriptor set) so they are available to the client to marshal/unmarshal the correct request and response data structures for the RPC schema.
Must be called within the
init phase.
Examples
import grpc from 'k6/experimental/grpc';
const client = new grpc.Client();
client.loadProtoset('./dummy.protoset');

