I am trying to scrape data table for those 3 stages in the picture(stages marked in red).

unfortunately, the code I've written is getting first table only for some reason. I have already tired other way round by getting Xpath for those individual tables but that doesn't quite work as it gave similar problem there too. Thanks in advance for your help.
website link: https://mcchip-dkr.com/en/chiptuning-database?fid=3222&view=carselector#0
for i in range(0, len(stage_button)):
print("pointer is ", pointer)
print("CLick on next stage\n")
time.sleep(2)
stage_button[pointer].click()
time.sleep(5)
table_li_tag = driver.find_element(By.CSS_SELECTOR, "li.uk-active")
table_pointer = table_li_tag.find_element(By.XPATH, "//table")
print(table_pointer.get_attribute("outerHTML"))
pointer = pointer + 1
if pointer > len(stage_button):
break