aboutsummaryrefslogtreecommitdiffstats
path: root/uitest/src/main/java
Commit message (Collapse)AuthorAgeFilesLines
...
* Update modifier order to follow Java Specification suggestions (#10050)Ahmed Ashour2017-09-2116-29/+29
| | | Also includes some other minor cleanup.
* Access static members in a static way (#10054)Ahmed Ashour2017-09-219-23/+22
|
* Use String.isEmpty() (#10045)Ahmed Ashour2017-09-2111-16/+16
|
* Remove unused methods (#10020)Ahmed Ashour2017-09-204-50/+0
|
* Fix ColorPickerGrid indexingHenri Sara2017-09-201-0/+34
| | | Fixes #9018
* Use simple class namesAhmed Ashour2017-09-203-4/+4
|
* Show validation error selecting invalid date from DateField (#10013)Marco Collovati2017-09-201-0/+31
| | | | | | | | | | Component error was cleared after selecting a date from calendar popup, even if the date is invalid due to validation errors or if user programmatically sets an UserError. This change inverts the order of setValue() and setComponentError(null) in order to preserve errors set by ValueChangeListeners (e.g. Binder validators). Fixes #10011
* Use String.isEmpty()Ahmed Ashour2017-09-197-7/+7
|
* Remove unneeded ArrayList constructionAhmed Ashour2017-09-191-4/+3
|
* Replace iterators with enhanced for loops (#10018)Ahmed Ashour2017-09-1911-51/+32
| | | This change also includes some other minor cleanup.
* Fix varargs warningsAhmed Ashour2017-09-1317-27/+23
|
* Fix generics type in test (#9977)Ahmed Ashour2017-09-131-1/+1
| | | This fixes a compilation error with Eclipse Oxygen.
* Remove element explicitly when reordering tree grid rows (#9952)Adam Wagner2017-09-111-0/+35
| | | | | | | Under certain circumstances IE 11 (11.0.45 / 11.0.9600.18762) produces an exception when collapsing/expanding rows (particularly the first child after the very first element) in a TreeGrid within a Window. This workaround removes the row explicitly before inserting, instead of letting JS handle it. Fixes #9850
* Fix making components visible by push (#9934)Henri Sara2017-09-063-43/+109
| | | | | | | | Fix connector tracker cleanup for the case where a component is hidden by a request and is made visible again by push. This fixes a regression caused by #9305. Fixes #9905
* Force re-measurement of CheckBoxGroup and RadioButtonGroup (#9901)Petter Holmström2017-09-042-0/+52
| | | | | | The related tests have a workaround for another (Chrome specific) GridLayout bug #9921. Those workarounds should be removed once that issue is fixed. Fixes #9148
* Position caption correctly in GridLayout (#9909)Petter Holmström2017-09-041-0/+29
| | | | | Position caption correctly when using different vertical alignment than TOP in GridLayout. Fixes #7895
* Omit duplicate caption for a Panel in a CompositeHenri Sara2017-08-301-0/+46
| | | | | | Correctly render components that handle their own captions inside a Composite. Fixes #9848
* Move ComboBox popup with ComboBox on scroll (#9869)Henri Sara2017-08-251-4/+12
| | | | | | Keep the ComboBox popup at the same position relative to the ComboBox when the view is scrolled. Fixes #5043
* Fix ValoThemeUI button text (#9865)Henri Sara2017-08-241-1/+2
|
* Avoid detaching VL/HL children unnecessarily (#9862)Henri Sara2017-08-231-0/+38
| | | | | | | When child components are removed from a VerticalLayout/HorizontalLayout, do not remove other children from the DOM if no other hierarchy changes are made. Fixes #7713
* Add item description to RadioButtonGroup and CheckBoxGroup (#9841)Teemu Suo-Anttila2017-08-232-0/+36
|
* Avoid detaching CssLayout children unnecessarily (#9861)Henri Sara2017-08-231-12/+7
| | | | | | When child components are removed from a CssLayout, do not remove other children from the DOM if no other hierarchy changes are made. Fixes #7712
* Button icon constructor (#9857)Stephan Knitelius2017-08-231-3/+2
| | | | | Added utility constructor for Button(Icon, ClickActionListener): new Button(VaadinIcons.AIRPLANE, e -> { ... });
* Resize should work within Grid details row (#9808)Ansku2017-08-222-0/+257
| | | Fixes #7341
* Add item descriptions to Tree (#9840)Teemu Suo-Anttila2017-08-211-3/+10
| | | Fixes #9803
* Do not wait for icons to load before interacting with a combo box (#9717)Artur2017-08-111-6/+17
| | | | | | | | | Icon load detection code does not handle error events so broken images will cause tests to fail forever. In other cases also, it seems very rare to need icons to be loaded before interacting with a combo box. If there really are use cases for this, it would be better to have a method to query if all icons are loaded so that special tests can use this method. Fixes https://github.com/vaadin/testbench/issues/916
* Provide API for setting row heights in Grid for different sections (#9810)Teemu Suo-Anttila2017-08-111-0/+12
| | | Fixes #9425
* Ensure wrong Action is not executed after detaching a component (#9806)Henri Sara2017-08-111-0/+131
| | | | | | | | | | Due to action key generation on ActionManager a wrong action may be executed if the component that fired the wanted action is already detached. This patch makes action keys globally unique, simplifying the approach of #8495 but reusing its tests. Fixes #5864
* Enable setting non-selected default value for DateField (#9745)Olli Tietäväinen2017-08-101-0/+34
| | | Requested feature: allow setting DateField to a certain starting point without selecting a value.
* Fix occasional empty rows in Table and TreeTable (#9800)Henri Sara2017-08-092-0/+87
| | | | | | | | | | | | | | | | Picked from #9551 in 7.7 There's an intermittently happening issue with both Table and TreeTable, which results in row data disappearing. This change removes a method which is probably a vestigial one from over five years ago and other changes are handling the things the method used to perform. Currently the method removes rows deemed unnecessary from the row buffer. The problem is, those rows are visible to the user and removing causes row contents to be lost. Also included are manually runnable test cases which demonstrate that this removal actually prevents the issue from happening. Fixes #7964 Fixes #5030
* Re(set) calendar time after calculating rollAmount (#9479)Grim2017-08-091-0/+1
| | | | | by calling calendar.setTime(today); after rollAmount has been initialized and given a value, we can reset the calendar's internal time back to the correct date. As it is currently implemented; calling calendar.getTime() will result in a wrong date, it returns the first of the month with the correct time. The function addInitialEvents() is called AFTER the calendar's time has been subtracted from (by calculating the rollAmount), as such this results in an incorrect internal time and the 'Day' button does not switch to the correct day. Instead it shows the first of the month here too.
* Implement SimpleManagedLayout for CompositeConnector (#9791)Teemu Suo-Anttila2017-08-091-0/+24
| | | Fixes #9788
* Add loop and preload attributes for media elements, fix null poster (#9797)Henri Sara2017-08-091-13/+13
| | | | | | | Picked from #9161 Fixes #7261 Fixes #5178 Fixes #4409
* Fix SplitPanel test for Chrome with a hack (#9782)Henri Sara2017-08-071-0/+5
| | | | Chrome 55 and later cause extra scrollbars on the testing cluster but not in local tests, probably due to a rounding error in the browser.
* Add automatic recalculation of Tree width on expand/collapse (#9767)Teemu Suo-Anttila2017-08-021-0/+36
| | | Fixes #9628
* Fix AbstractDateField parsing and errors handling, support locale (#9740)Ilia Motornyi2017-08-021-0/+67
| | | | | Fixes #9518 Fixes #8991 Fixes #8687
* Fix RadioButtonGroup selection updates to client (#9749)Teemu Suo-Anttila2017-08-021-0/+68
| | | | | | | This patch provides a simple fix for the majority of issues. There are still issues that should be fixes by refactoring parts of the logic in AbstractSingleSelect. This patch does not unify the handling of empty values in the TestBench elements of various AbstractSingleSelects. Fixes #9494
* Add header and footer visibility setting to Grid (#9706)Teemu Suo-Anttila2017-08-011-0/+6
|
* Implement GWT Focusable so tab indexes work correctly in MenuBar (#9733)Artur2017-07-271-50/+41
| | | Fixes #9550
* Send cursor position to server on blur even if the value has not changed (#9728)Artur2017-07-261-0/+59
| | | Fixes #9653
* Fix button text and waitUntil rule (#9720)Teemu Suo-Anttila2017-07-241-1/+1
|
* Do full connector tracker cleanup when the session lock is released (#9707)Artur2017-07-242-5/+67
| | | | | | | | | | As there is no "request end" call after invoking UI.access() from a background thread, the connector map was not earlier properly cleaned afterwards. If you toggled visibility of a component from the background thread, the tracker state became inconsistent. If this becomes a performance problem, it could probably be optimized to that cleanup is done in request end and only at the end of access if not inside a request. Fixes #9654
* Add test for Components in Grid Header (#9696)Teemu Suo-Anttila2017-07-201-1/+3
| | | Closes #9694
* Allow null Components in ComponentRenderer (#9692)8.1.0.rc2Teemu Suo-Anttila2017-07-191-0/+3
|
* Add styling for ComponentRenderer wrapper div (#9691)Teemu Suo-Anttila2017-07-191-0/+1
| | | Fixes #9170
* Fix Grid header merging on init (#9688)Teemu Suo-Anttila2017-07-181-3/+7
| | | Fixes #9686
* Fix position of font icons in ComboBox (#9638)Henri Sara2017-07-181-0/+26
| | | Fixes #9637
* Implement tree item context clickIlia Motornyi2017-07-101-0/+72
| | | | | Fixes #9606 Fixes #9645 Fixes #9647
* Add criteria API to make it easier to set acceptance criteria for drag and ↵Adam Wagner2017-07-031-10/+18
| | | | | drop (#9605) Fixes #9600
* Add editor open event to Grid Editor (#9623)Teemu Suo-Anttila2017-07-031-0/+1
| | | Fixes #9596