diff options
author | Artur Signell <artur.signell@itmill.com> | 2011-11-17 11:44:13 +0000 |
---|---|---|
committer | Artur Signell <artur.signell@itmill.com> | 2011-11-17 11:44:13 +0000 |
commit | b587b80cbd96da566b0359f61ffec4250e0a9d76 (patch) | |
tree | 785ee9e5e3034acb0554d08a2f81588943242886 /tests | |
parent | 664cd522e5a3d1de400eec94f5f584a4b93767ef (diff) | |
download | vaadin-framework-b587b80cbd96da566b0359f61ffec4250e0a9d76.tar.gz vaadin-framework-b587b80cbd96da566b0359f61ffec4250e0a9d76.zip |
#7950 ComboBox show paging button even though there are no matches
svn changeset:22033/svn branch:6.7
Diffstat (limited to 'tests')
-rw-r--r-- | tests/testbench/com/vaadin/tests/components/combobox/ComboBoxFiltering.html | 62 |
1 files changed, 62 insertions, 0 deletions
diff --git a/tests/testbench/com/vaadin/tests/components/combobox/ComboBoxFiltering.html b/tests/testbench/com/vaadin/tests/components/combobox/ComboBoxFiltering.html new file mode 100644 index 0000000000..3de221871d --- /dev/null +++ b/tests/testbench/com/vaadin/tests/components/combobox/ComboBoxFiltering.html @@ -0,0 +1,62 @@ +<?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="" /> +<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>open</td> + <td>/run/com.vaadin.tests.components.combobox.ComboBoxSlow?restartApplication</td> + <td></td> +</tr> +<tr> + <td>mouseClick</td> + <td>vaadin=runcomvaadintestscomponentscomboboxComboBoxSlow::/VVerticalLayout[0]/ChildComponentContainer[1]/VVerticalLayout[0]/ChildComponentContainer[1]/VFilterSelect[0]/domChild[0]</td> + <td>92,19</td> +</tr> +<tr> + <td>enterCharacter</td> + <td>vaadin=runcomvaadintestscomponentscomboboxComboBoxSlow::/VVerticalLayout[0]/ChildComponentContainer[1]/VVerticalLayout[0]/ChildComponentContainer[1]/VFilterSelect[0]/domChild[0]</td> + <td>1</td> +</tr> +<tr> + <td>screenCapture</td> + <td></td> + <td>filter-no-match</td> +</tr> +<tr> + <td>enterCharacter</td> + <td>vaadin=runcomvaadintestscomponentscomboboxComboBoxSlow::/VVerticalLayout[0]/ChildComponentContainer[1]/VVerticalLayout[0]/ChildComponentContainer[1]/VFilterSelect[0]/domChild[0]</td> + <td>Item 12</td> +</tr> +<tr> + <td>screenCapture</td> + <td></td> + <td>filter-11-matches-paging</td> +</tr> +<tr> + <td>screenCapture</td> + <td></td> + <td>filter-11-matches-page-2</td> +</tr> +<tr> + <td>enterCharacter</td> + <td>vaadin=runcomvaadintestscomponentscomboboxComboBoxSlow::/VVerticalLayout[0]/ChildComponentContainer[1]/VVerticalLayout[0]/ChildComponentContainer[1]/VFilterSelect[0]/domChild[0]</td> + <td>Item 100</td> +</tr> +<tr> + <td>screenCapture</td> + <td></td> + <td>filter-2-matches-no-paging</td> +</tr> + +</tbody></table> +</body> +</html> |