


# https://www.globalsino.com/ICs/page4853.html
# Screen shot of the full screen after 5 seconds

import PIL.ImageGrab
import time

time.sleep(5)
My_screen_shot = PIL.ImageGrab.grab()
My_screen_shot.save("C:\GlobalSino\images\ScreenShot.png")

