Unicode and special characters

The name of my page has special characters. The recorder does not try to interpret them, it just omits them which makes the findTestObject instruction fail.
My page name is Rådö If I use the recorder to fill in a field and click on a button, the script will look like this:

WebUI.setText(findTestObject(‘Page_Rd/input_clientnumber_form-control’), ‘8000000001’)

WebUI.click(findTestObject(‘Page_Rd/button_OK’))

So when I try to run the test I suspect it fails because it can’t find the Page “Rd”, since it’s Rådö. I tried using the actual page name as well as unicode so it would actually try to find the page name “Rådö” but that didn’t solve the problem:

WebUI.setText(findTestObject(‘Page_R\u00E5d\u00F6/input_clientnumber_form-control’), ‘8000000001’)

WebUI.click(findTestObject(‘Page_R\u00E5d\u00F6/button_OK’))

Any feedback is much appreciated

For the time being, I’m going to categorize this as a bug.

Perhaps @devalex88 et al can give us some advice?

In autumn 2019 the ver 7.1.0 addressed the I18N problem.

Hopefully the “Unicode and special characters” problem has been resolved by this.