I'm working on automating GUI-testing at my job. I'm currently stuck at something as silly as inserting the character "ø", which is a letter of my language.

The method-call is as follows:
_atlas.AvailabilityRadioSearch.InsertAddressAddress("kjøita");
This is supposed to automatically fill in the value in a standard textbox on the webpage. But, I can't seem to get it right. It always turns out "kj?ita".

Does anybody know how I can go about fixing this?

Oh, and btw;
Please do not care about the crappy method- and classnames, as this is just for testing-purposes and not to be used by anyone else :)

link|improve this question

71% accept rate
2  
Are you using UTF-8 encoding? – Diodeus Jan 4 at 17:24
As this is a huge system, and I'm only working on a small part of it, I'm not sure actually :$ – niwi Jan 4 at 17:25
Can you post the code of the InsertAddressAddress method? Specifically, what method is it calling to insert the data into the UI? Also, what happens if you type that character into the UI manually, as a user would? – phoog Jan 4 at 17:26
Take a look here: stackoverflow.com/questions/7970021/… – Diodeus Jan 4 at 17:27
public void InsertAddressAddress(string address) { _addressForm.Find("_txtStreetName").Text = address; } – niwi Jan 4 at 17:27
show 1 more comment
feedback

3 Answers

You need to change 'ø' into ø

link|improve this answer
I've already tried that :/ – niwi Jan 4 at 17:27
And? What happened? – Mr. Pallazzo Jan 4 at 17:28
Same problem I had to begin with. "kj?ita". – niwi Jan 4 at 17:28
What kind of encoding are you using? And what if you try: Ø instead? – Mr. Pallazzo Jan 4 at 17:29
I'm not really sure, embarrasingly enough.. – niwi Jan 4 at 17:31
feedback

Think about setting the UI Culture/Culture on your page:

web.config

<configuration> 
  <system.web> 
    <globalizationculture="FR-CH" uiCulture="FR-CH" /> 
  </system.web> 
</configuration>

Page

<%@Page Culture="FR-CH"  uiCulture="FR-CH"  Language="C#" %>

Replace FR-CH with your specific language culture and you should be good to go.

MSDN UI Culture/Culture for ASP.NET

Displaying French in ASP.NET Textbox

List of UI Culture values (eg FR-CH)

link|improve this answer
feedback

Just tested this and it works, despite being clunky:

char oSlash = '\u00F8'; //use '\u00D8' for the uppercase version
_atlas.AvailabilityRadioSearch.InsertAddressAddress("kj" + oSlash + "ita");
link|improve this answer
Does not seem to work for me :( I'll be back tomorrow. Thanks for the effort guys! – niwi Jan 4 at 18:28
I'm starting to wonder if this problem lies within the in-house developed framework we use for this kind of testing. Seems to me after a bit of research that the browser accepts "ø" in every way possible. – niwi Jan 5 at 15:39
feedback

Your Answer

 
or
required, but never shown

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