vote up 2 vote down star

The following instruction

Selenium.typeKeys("location", "gmail.com");

types the string gmailcom instead of gmail.com.

What's happening there?

From the comments:
I am trying to simulate autofill and the only way to do it currently on selenium is to combine type and typeKeys. eg:

selenium.type("assigned_to", split[0]+"@");
selenium.typeKeys("assigned_to", "gmail.com");

Now my question is why typeKeys doesn't type the 'dot' in between gmail.com?

flag

41% accept rate
Did you solve this? – s_hewitt May 4 at 15:38

4 Answers

vote up 0 vote down

This is an open bug in Selenium (bug SEL-519).

After some fiddling around with it, I finally managed to enter '.' into a textarea by using JavaScript. Execute something like window.document.getElementById('assigned_to').value += '.' via storeEval or the like.

link|flag
vote up 0 vote down

I'm also seeing this behaviour when using Selenium RC (C#), and with different characters ('y' for example which also seems to remove the character follow it from the typing action..)

For some situations it is entirely possible to get around the issue by typing out the keys with the TypeKeys or KeyPress functions, but I haven't managed to find a solution that works when you want to type text in a field, enter control characters ([Enter] or a newline for example), and then type more text.. (using the 'Type' function in this case simply overwrites the field contents...).

If anyone manages to find a reasonable solution to this issue, please add it to this question as it's starting to come up in google now and would probably help alot of people out.. (I'd start a bounty if I could..)

link|flag
vote up 2 vote down

Have you tried using the Native key functions and javascript char codes? I couldn't get a 'period' character to work using them (char 190), but I got the decimal (char 110) to work just fine, and the text box shouldn't have a problem with either.

selenium.Focus("assigned_to");
selenium.Type("assigned_to", split[0]+"@");
selenium.TypeKeys("assigned_to", "gmail");
selenium.KeyPressNative("110");
selenium.TypeKeys("assigned_to", "com");
link|flag
I couldn't find any function in selenium that types a period (ASCII 46). – s_hewitt Apr 29 at 20:25
vote up 2 vote down

Use the type method.

From the javadoc for typekeys:

this command may or may not have any visible effect, even in cases where typing keys would normally have a visible effect

...

In some cases, you may need to use the simple "type" command to set the value of the field and then the "typeKeys" command to send the keystroke events corresponding to what you just typed.

link|flag
Believe me i read that doc. I am trying to simulate autofil and the only way to do it currently on selenium is to combine type and typeKeys. eg: selenium.type("assigned_to", split[0]+"@"); selenium.typeKeys("assigned_to", "gmail.com"); Now my question is why typeKeys doesnt type the 'dot' in between gmail.com? – unknown (yahoo) Apr 29 at 19:31
I added your comment to your question. Comments aren't read by everyone. – furtelwart Apr 29 at 19:40

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.