

# https://www.globalsino.com/ICs/page4853.html
# Snipping tool: take a screen shot from the full screen automatically without manual click

import pyautogui

# Full screen will be snipped if "region = ()" is removed.
def MyScreenShot():
    img = pyautogui.screenshot("C:\GlobalSino\images\TestScreenshot.png",
                               region = (200,300,400,400))    
   
MyScreenShot()


