Select Selenium IDE 中带有键 "space"( ) 的选项

Select option with key "space"( ) in the Selenium IDE

我有 select 和两个带有标记 "space" 的选项(请看 Jsfiddle)。我无法在 select 中使用 select 选项在 Selenium IDE 中使用我的测试。我该怎么做?

这是 JSFiddle:

http://jsfiddle.net/fgh9szk3/1/

这是我的 select:

<select id="select">
    <option value="1">USD &nbsp;</option>
    <option value="3">EUR &nbsp;</option>
</select>

这是我在 Selenium 中的测试 IDE:

<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
<head profile="http://selenium-ide.openqa.org/profiles/test-case">
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
<link rel="selenium.base" href="http://jsfiddle.net/fgh9szk3/1/" />
<title>New Test</title>
</head>
<body>
<table cellpadding="1" cellspacing="1" border="1">
<thead>
<tr><td rowspan="1" colspan="3">New Test</td></tr>
</thead><tbody>
<tr>
    <td>select</td>
    <td>css=#select</td>
    <td>USD</td>
</tr>

</tbody></table>
</body>
</html>

Select它by label(意思是可见文字),提供正则表达式:

<tr>
    <td>select</td>
    <td>css=#select</td>
    <td>label=regexp:^USD</td>
</tr>

其中 ^ 匹配字符串的开头。