No, it's not possible. Not with NET::HTTP. You actually need to run the browser. But you can run it in a headless mode!
Fortunately, in Ruby there are some great gems that allow you to achieve that. Myself, I most often use Ferrum, which runs Chromium in the background and allows you to interface with the website using an extended Nokogiri API. Ferrum uses the CDP protocol to interface with Chromium and possibly Firefox.
In the past I have used Watir which basically wraps Selenium WebDriver with a nicer API and works with all the browsers. Your mileage may vary with this, I had a lot easier time with Ferrum and Ferrum provides a Nokogiri-compatible API, while Watir doesn't. On the other hand, Watir is a lot more mature.
I have tried puppeteer-ruby, which is mostly a port of the JavaScript puppeteer library. Like Ferrum, it also uses the CDP interface, but it may provide a better support than Ferrum for various features, because as a port of puppeteer, it contains a lot of knowledge that was put into puppeteer which is widely used. It's quite new, but very interesting.