diff options
author | John Ahlroos <john@vaadin.com> | 2013-08-22 11:10:18 +0300 |
---|---|---|
committer | John Ahlroos <john@vaadin.com> | 2013-08-22 11:22:39 +0300 |
commit | c7a8c3f60912db10b00ad735416cc3df1fb5ffba (patch) | |
tree | 1e096ddbacc33930f53102c12a89024d02774c7d | |
parent | 234ed1c9b51a6db1b87a2e6afe0609227b7bd67e (diff) | |
download | vaadin-framework-c7a8c3f60912db10b00ad735416cc3df1fb5ffba.tar.gz vaadin-framework-c7a8c3f60912db10b00ad735416cc3df1fb5ffba.zip |
Fixed failing TabKeyboardNavigation test #12433
The test fails on Opera 12 since the assertText is done before the
tabsheet has had time to change the tab content. Added a small waiting
period after the tab is changed before the assert is made to fix the
issue.
Change-Id: I89dfe040b577106f9f843c8b4013d20be1e02166
-rw-r--r-- | uitest/src/com/vaadin/tests/components/tabsheet/TabKeyboardNavigation.html | 26 |
1 files changed, 25 insertions, 1 deletions
diff --git a/uitest/src/com/vaadin/tests/components/tabsheet/TabKeyboardNavigation.html b/uitest/src/com/vaadin/tests/components/tabsheet/TabKeyboardNavigation.html index 129061e69c..4b2ad890c3 100644 --- a/uitest/src/com/vaadin/tests/components/tabsheet/TabKeyboardNavigation.html +++ b/uitest/src/com/vaadin/tests/components/tabsheet/TabKeyboardNavigation.html @@ -3,7 +3,6 @@ <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://localhost:8068/" /> <title>TabKeyboardNavigation</title> </head> <body> @@ -27,6 +26,11 @@ <td>right</td> </tr> <tr> + <td>pause</td> + <td>1000</td> + <td>1000</td> +</tr> +<tr> <td>assertText</td> <td>vaadin=runTabKeyboardNavigation::/VVerticalLayout[0]/ChildComponentContainer[1]/VVerticalLayout[0]/ChildComponentContainer[4]/VTabsheet[0]/VTabsheetPanel[0]/VVerticalLayout[1]/ChildComponentContainer[0]/VLabel[0]</td> <td>Tab 2</td> @@ -47,6 +51,11 @@ <td>right</td> </tr> <tr> + <td>pause</td> + <td>1000</td> + <td>1000</td> +</tr> +<tr> <td>assertText</td> <td>vaadin=runTabKeyboardNavigation::/VVerticalLayout[0]/ChildComponentContainer[1]/VVerticalLayout[0]/ChildComponentContainer[4]/VTabsheet[0]/VTabsheetPanel[0]/VVerticalLayout[3]/ChildComponentContainer[0]/VLabel[0]</td> <td>Tab 5</td> @@ -67,6 +76,11 @@ <td>right</td> </tr> <tr> + <td>pause</td> + <td>1000</td> + <td>1000</td> +</tr> +<tr> <td>assertText</td> <td>vaadin=runTabKeyboardNavigation::/VVerticalLayout[0]/ChildComponentContainer[1]/VVerticalLayout[0]/ChildComponentContainer[4]/VTabsheet[0]/VTabsheetPanel[0]/VVerticalLayout[4]/ChildComponentContainer[0]/VLabel[0]</td> <td>Tab 6</td> @@ -122,6 +136,11 @@ <td>right</td> </tr> <tr> + <td>pause</td> + <td>1000</td> + <td>1000</td> +</tr> +<tr> <td>assertText</td> <td>vaadin=runTabKeyboardNavigation::/VVerticalLayout[0]/ChildComponentContainer[1]/VVerticalLayout[0]/ChildComponentContainer[4]/VTabsheet[0]/VTabsheetPanel[0]/VVerticalLayout[8]/ChildComponentContainer[0]/VLabel[0]</td> <td>Tab 12</td> @@ -152,6 +171,11 @@ <td>left</td> </tr> <tr> + <td>pause</td> + <td>1000</td> + <td>1000</td> +</tr> +<tr> <td>assertText</td> <td>vaadin=runTabKeyboardNavigation::/VVerticalLayout[0]/ChildComponentContainer[1]/VVerticalLayout[0]/ChildComponentContainer[4]/VTabsheet[0]/VTabsheetPanel[0]/VVerticalLayout[0]/ChildComponentContainer[0]/VLabel[0]</td> <td>Tab 1</td> |