You're not looking for technology that works for your job! So read the article seriously! I think
Where do you automate! ?? ↓ It's hard to be alone because there is a huge amount of testing. I want to do something by the deadline And when you are in a situation where you endlessly repeat similar tests that you get tired of once
I expect that if you have a personal computer, you can test as if you were your own alter ego.
--First of all, work ingenuity (shortening) → Automation will be faster --Here, if it is within the sufficient range, automation is not necessary. ――This time, I can't make it by myself, so I want to make my own alter ego --Automate
6step.py
# ALT + PRINTSCREEN
# ↓
#Windows key+ PRINTSCREEN
--Get a capture with a command --Open paint software --Paste the capture --Specify a save location to save as an image --Save the image
1step.py
#Windows key+ PRINTSCREEN
Implementation example.py
#Take a screenshot
def screenshot():
keyDown(Key.WIN)
keyDown(Key.PRINTSCREEN)
keyUp()
#main
screenshot()
How to send alt+printscreen command from sikuli? https://answers.launchpad.net/sikuli/+question/208921 Key Constants https://sikulix-2014.readthedocs.io/en/latest/keys.html keyDown https://sikulix-2014.readthedocs.io/en/latest/region.html#Region.keyDown
Will be updated later
Recommended Posts