class Playwright::ChannelOwners::ElementHandle

def check(force: nil, noWaitAfter: nil, position: nil, timeout: nil, trial: nil)

def check(force: nil, noWaitAfter: nil, position: nil, timeout: nil, trial: nil)
  params = {
    force: force,
    noWaitAfter:  noWaitAfter,
    position: position,
    timeout: timeout,
    trial: trial,
  }.compact
  @channel.send_message_to_server('check', params)
  nil
end