class Playwright::PlaywrightApi::ChannelOwnerWrapper

def wrap

def wrap
  api_class = detect_class_for(@impl.class)
  if api_class
    @impl._api ||= api_class.new(@impl)
  else
    raise NotImplementedError.new("Playwright::#{expected_class_name_for(@impl.class)} is not implemented")
  end
end