To get the network request data using firefox, chrome or whatever selenium driver, just access the window.performance
object.
def get_performance(driver):
"""Get network performance for webdriver"""
JS_PERFORM = "return window.performance.getEntries() || {};"
test = driver.execute_script(JS_PERFORM)
return test