Hi @FLT_Rizki ,
If the action is not working your system some problem with Browser or Instance, I guess.
You can take screenshot using Python script also as shown in below image. But you also need some prerequisites.
"You need to have Python installed on the machine and If your script uses external Python libraries (modules), you might need to install those libraries as well(pip install pygetwindow pyautogui)"


Python script:
import pygetwindow as gw
import pyautogui
# Get the active foreground window
active_window = gw.getActiveWindow()
if active_window is not None:
# Get the position and size of the active window
x, y, width, height = active_window.left, active_window.top, active_window.width, active_window.height
# Capture the screenshot of the active window
screenshot = pyautogui.screenshot(region=(x, y, width, height))
# Save the screenshot to the specified location
screenshot_path = r"D:\Power_Automate\Test\screenshot.png"
screenshot.save(screenshot_path)
print("Screenshot saved successfully at:", screenshot_path)
else:
print("No active foreground window found.")
(Note:- if you got your solution you can mark as solution and gives kudos)
Thanks & Regards
Vishnu Reddy