We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Hi,guys,I have currently written a test script with the following content `import time import pyautogui
time.sleep(1)
pyautogui.mouseDown(button='left') pyautogui.mouseUp(button='left') pyautogui.hotkey('ctrl', 'shift', 'down') print('Script completed.')`
And I have also tried to write it in the following format
`import time import pyautogui
pyautogui.mouseDown(button='left') pyautogui.mouseUp(button='left') pyautogui.keyDown('ctrl') pyautogui.keyDown('shift') pyautogui.keyDown('down') pyautogui.keyUp('down') pyautogui.keyUp('shift') pyautogui.keyUp('ctrl') print('Script completed.')`
But currently, it seems that either way of writing will render 'shift' ineffective. Looking forward to receiving a response, thank you very much
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Hi,guys,I have currently written a test script with the following content
`import time
import pyautogui
time.sleep(1)
pyautogui.mouseDown(button='left')
pyautogui.mouseUp(button='left')
pyautogui.hotkey('ctrl', 'shift', 'down')
print('Script completed.')`
And I have also tried to write it in the following format
`import time
import pyautogui
time.sleep(1)
pyautogui.mouseDown(button='left')
pyautogui.mouseUp(button='left')
pyautogui.keyDown('ctrl')
pyautogui.keyDown('shift')
pyautogui.keyDown('down')
pyautogui.keyUp('down')
pyautogui.keyUp('shift')
pyautogui.keyUp('ctrl')
print('Script completed.')`
But currently, it seems that either way of writing will render 'shift' ineffective.
Looking forward to receiving a response, thank you very much
The text was updated successfully, but these errors were encountered: