class Playwright::Page

def go_forward(timeout: nil, waitUntil: nil)

Navigate to the next page in history.

last redirect. If can not go forward, returns `null`.
Returns the main resource response. In case of multiple redirects, the navigation will resolve with the response of the
def go_forward(timeout: nil, waitUntil: nil)
  wrap_impl(@impl.go_forward(timeout: unwrap_impl(timeout), waitUntil: unwrap_impl(waitUntil)))
end