← Back to team overview

sikuli-driver team mailing list archive

Re: [Question #194006]: how can i type :, /, %, & on my germany keyboard on Java

 

Question #194006 on Sikuli changed:
https://answers.launchpad.net/sikuli/+question/194006

Roman Podolyan posted a new comment:
With help of documentation and Captain Obvious :) , I would go in this
case for the recommended paste([PSMRL], text) function, described in
documentation next to Click:

http://sikuli.org/docx/region.html#Region.paste

It helped me solve most of the issues with "type".


The other way is to go for low-level keyboard commands. Here is how I do
CMD+1 on Mac:

	keyDown(Key.CMD)
	type("1")
	keyUp(Key.CMD)


But in the case of entering of web address paste([PSMRL], text) is better.

-- 
You received this question notification because you are a member of
Sikuli Drivers, which is an answer contact for Sikuli.