class Playwright::Transport

def shorten_double_quoted_string(message, maxlen: 512)

def shorten_double_quoted_string(message, maxlen: 512)
  message.to_s.gsub(/"([^"]+)"/) do |str|
    if $1.length > maxlen
      "\"#{$1[0...maxlen]}...\""
    else
      str
    end
  end
end