Hey, I'm having some trouble here...
How can I delete an entire text from a field with the sendkeys ?
How can I send the ctrl+shift pressed with the left arrow and delete key after?
edit:
for example, I have this part of the code
ctypes.windll.user32.SetCursorPos(910,475)
win32api.mouse_event(win32con.MOUSEEVENTF_LEFTDOWN, 0, 0, 0)
win32api.mouse_event(win32con.MOUSEEVENTF_LEFTUP, 0, 0, 0)
time.sleep(0.1)
shell.SendKeys(inf_firstname)
This part select a field and paste the firstname information (just like a macro), but I want to do something before paste the information that deletes the content of the field, if it has one...
capiche?