aboutsummaryrefslogtreecommitdiffstats
path: root/uitest
Commit message (Collapse)AuthorAgeFilesLines
* Prevent IndexOutOfBoundException in VMenuBar.CustomMenuItem (#11285)Jonni Madekivi2018-12-172-0/+50
| | | | | | | | * Fixes #10814 * Add missing tests Fixes #11374
* Update Screenshot due to Icon update (#11373)Sun Zhe2018-12-145-0/+0
| | | | Update screenshots due to update of search-minus and search-plus icons values
* Move onClick logic to the Connector (#11367)Anastasia Smirnova2018-12-142-0/+54
| | | | | | | | | | * Move onClick logic to the Connector Move onClick event handling from 'VNativeButton' to NativeButtonConnector. Now works as for regular button. Also, adding propagation of the `enabled` value to the state on disableOnClick being true Fixes https://github.com/vaadin/framework/issues/11188
* Apply missing v-readonly style to CheckBoxGroup, when component is readOnly ↵Anastasia Smirnova2018-12-132-0/+76
| | | | | | | | | | | | | | | | (#11370) Setting read-only state to CheckBoxGroup should disable adding clicking effect. Missing v-readonly style is added to every CheckBox in the component, if it's set to read-only. Fixes: https://github.com/vaadin/framework/issues/11113 * Add file missed from initial commit * Verifying that option is enabled Some of the options might be disabled on there own. Verify that option is not disabled, before removing disabled styles. * Add missing test file
* Request data update before client response (#11341)Sun Zhe2018-12-112-0/+102
| | | | | | | | | * Request data update before client response * fix the accidental commit * add tests fixes #11320
* Add missing FocusShortcutListener (#11289)Michael Forstner2018-12-102-0/+73
| | | | | | | | | * Add missing FocusShortcutListener Was removed from 8.0 and not readded. Fixes #8297 * Update Release note for this change
* Fix Grid's frozen columns not being set (#10653) (#11346)mlindfors2018-12-052-0/+83
| | | | | | | In certain cases setting the frozen columns didn't produce the expected result in the client side widget state. This happened if the frozen columns value was set to be the same it was before removeAllColumns was called. This fix removes the frozen column value from the diff state so that the value gets properly set in the client side. Closes #10653
* Add more context information to criteriaScript in GridDropTargetConnector ↵vt5122018-12-051-0/+86
| | | | | | | | | | | | | | | | | | | | | (#11321) * Add more context information to criteriaScript in GridDropTargetConnector When using drag and drop in Grids and TreeGrids a criteriaScript can be specified. However, this criteriaScript only gets an event as input parameter. It would be helpful if the criteriaScript would get more information: - the DropLocation - the targetElement which is used as a base for the DropLocation This change provides a protected method in DropTargetExtensionConnector which decides, if the drop is allowed by the criteriaScript. This method is overriden in GridDropTargetConnector to provide the both parameters dropLocation and targetElement. * add Test UI for criteriaScript with targetElement and dropLocation * add some description for the Test UI
* Improvement to details row height handling. (#11351)Anna Koskinen2018-12-042-0/+153
| | | | | | - When rows are added, details row heights need to be taken into account in positioning. Fixes #11348
* added newlines to the end of filesOlli Tietäväinen2018-12-041-1/+1
|
* pick tests from https://github.com/vaadin/framework/pull/11092Olli Tietäväinen2018-12-042-0/+70
|
* Update screenshot in IE11 and increase sleeping time for ColorPickerTestSun Zhe2018-11-282-1/+1
|
* Fix colorPicker tests (#11312)Sun Zhe2018-11-271-1/+1
| | | | | | | * Fix colorPicker tests In IE11, the click-layer needs longer time to load.
* Revert "Update ComboBox internal state on new item added (#11094)" (#11331)Sun Zhe2018-11-275-5/+47
| | | | | | | | * Revert "Update ComboBox internal state on new item added (#11094)" This reverts commit 56ce91c6160a252ddcd952bca6eb7037120ebf59. * Add tests to verify the issue
* Fix for setting default row height for a Grid with details row(s) open. (#11326)Anna Koskinen2018-11-212-0/+91
| | | | | | | | | * Fix for setting default row height for a Grid with details row(s) open. - Details row(s) should be taken into account when the rows are re-positioned after getting new heights. Fixes #11325
* Refactoring DataCommunicator code (#11304)Anastasia Smirnova2018-11-153-0/+147
| | | | | | | This refactoring addresses two issues cased by dropping updatedData before it was processed. Issues arise , when visibility has change. Fixes #11274 and similar issue within RadioButton There is no reliable way to test automatically NativeSelects in Grid, but adding UI test, at least
* Correct the logic for validation used in DateField (#11307)Sun Zhe2018-11-132-0/+143
| | | | | | | | Fixes #11276 Refactor the code and correct the logic for validation Rename an internal variable, as it contains more than one type of messages
* Update DateTimeField failing screenshot (#11300)Anastasia Smirnova2018-11-091-0/+0
|
* Update VaadinIcons (#11281)Ilia Motornyi2018-11-084-0/+0
|
* Update framework to use jetty-server 9.4 (#11272)Sun Zhe2018-11-061-8/+9
| | | Fix upload issue
* Make value changes in color picker user originated (#11252)Jeremy Stucki2018-11-022-0/+70
| | | | | | | | | * Make value changes in color picker user originated This is not a programmatically initiated event, so it should have the 'userOriginated' property set to 'true'. - Added test to verify that indeed event is user originated after the change
* Refactor the usage of KeyMapper in ActionManager. (#11265)Sun Zhe2018-10-262-0/+66
| | | | | | | | | * Add Test for closing window with focused textfield verify issue #10642 * Refactor the code about using keyMapper
* Update time in ReadOnly state of DateTimeCalendar (#11269)Anastasia Smirnova2018-10-242-0/+83
| | | | | Fix https://github.com/vaadin/framework/issues/11268 ```buildTime()``` function re-initializes ListBoxes for hours,minutes and seconds values. We need to set correct values in those ListBoxes, before assigning value to the labels displayed instead of those ListBoxes in ReadOnly state, as , otherwise, the selectedItemIndex returns 0.
* Display the caption of the Empty selection in NativeSelect (#11191)Anastasia Smirnova2018-10-183-0/+98
| | | | | | | | | | | | | | | | * Fixes #10937 - Previously if selected value is null, then index is set to -1; in current implementation if value is null and emptySelection is allowed then set the index to 0. (The position for the empty selection) - Also, if changing the allowEmptySelection on the fly, ensure, that either index is to-reset to -1 by setting the selected value to null on the client-side (the value before was null) or preserve the value(value was different than empty). * Change the test case Since in this pr the behaviour of the NS is changed, therefore old test need to be adjusted. Change: setting null as value will select empty selection. Before that nothing would be selected and value will be cleared. Behaviour change in PR: Allow selecting null as value
* Rebuild calendar pop-up on readOnly state change (#11249)Anastasia Smirnova2018-10-172-0/+70
| | | | | | * Rebuild calendar pop-up on readOnly state change Fixes https://github.com/vaadin/framework/issues/6565
* Format the code (#11244)Sun Zhe2018-10-153-30/+37
|
* Revert change to fix issue on removing Grid with components (#11224)Sun Zhe2018-10-125-37/+82
| | | | | | | | | | * Test case for removing Grid with components * This reverts commit b2745dc14f17b510df7321ab3f6285ed317da3b3. Add test case to address the issue with removing gird with components; Current situation: the grid cannot be removed and client-side throw an error. fixes: Revert the corresponding change, as it didn't address any issue which was fixed.
* Updates to scrolled TabSheet resize logic and Valo right-alignment. (#11133)Anna Koskinen2018-10-102-0/+203
| | | | | | | | | | - When a TabSheet is scrolled to an end and then resized bigger, more tabs should appear to the left. - When a TabSheet is right-aligned in Valo and scrolled to the end, last tab shouldn't be partially hidden behind the scroller buttons. - Shouldn't allow attempts to scroll into directions where there is nothing left to scroll to, even if the current tab isn't fully visible. Fixes #807
* Fixes to displaying Grid in a detail row. (#11147)Anna Koskinen2018-10-085-0/+279
| | | | | | | | - Multiple headers shouldn't stack behind each other. - Body rows shouldn't get stuck to default row height. - Compatibility version's hidable row selector shouldn't try to calculate row heights based on rows that haven't been added to DOM yet. Fixes #7674
* Suppress unavoidable UIDetachedException (#11146)Leif Åstrand2018-10-025-5/+145
| | | | | * Suppress unavoidable UIDetachedException Fixes #11144
* Replaced Grid's internal size calculation fix with an indexing fix. (#11154)Anna Koskinen2018-10-012-0/+144
| | | | | | - More lightweight, and fixes things for any custom implementations of Escalator as well. Fixes #11044
* Introduce delay for ChameleonTheme test (#11210)Sun Zhe2018-10-011-0/+1
|
* Update master to 8.7-SNAPSHOT (#11208)Sun Zhe2018-09-271-1/+1
|
* Update ComboBox internal state on new item added (#11094)8.6.0.beta1Teemu Suo-Anttila2018-09-262-9/+9
|
* update uitest screenshot reference (#11197)Sun Zhe2018-09-213-0/+0
| | | | | | | | * update uitest screenshot reference * one more screenshot * screenshot for table drop indicator
* Fix/focus inside window chrome (#11142)Mehdi Javan2018-09-192-0/+128
| | | | Fixes #11087
* Fixing RadioButtonGroup exception in Window (#11181)Mehdi Javan2018-09-172-0/+93
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * discardStaleCacheEntries is moved to a proper place before updating indexToRowMap and keyToIndexMap maps. In its previous place, it cleared the data that was just put in the maps. Fixes #11143 * Adding test * Removing extra annotations * Updating chrome version to 69 in tests (#11182) * Updating Chrome version to 69 * Updating screenshots taken in Chrome 69 * Fixing screenshots * Fixing screenshots * Adding some wait commands to tests * Fixing screenshots * Revert: Fixing screenshots * More screenshots * - Adding wait commands to make sure the transitions end before screenshot - Fixing a screenshot * Correcting a mistake of using wait instead of sleep * Fixing more screenshots * Increasing the height of ContextMenu (Because of limitation of new Chrome 69 in terms of minimum window height, ContextMenu size can't be tested with a small height.)
* Updating chrome version to 69 in tests (#11182)Mehdi Javan2018-09-17201-9/+30
| | | | | | | | | | | | | | | | | | | | | | | | | | | * Updating Chrome version to 69 * Updating screenshots taken in Chrome 69 * Fixing screenshots * Fixing screenshots * Adding some wait commands to tests * Fixing screenshots * Revert: Fixing screenshots * More screenshots * - Adding wait commands to make sure the transitions end before screenshot - Fixing a screenshot * Correcting a mistake of using wait instead of sleep * Fixing more screenshots * Increasing the height of ContextMenu (Because of limitation of new Chrome 69 in terms of minimum window height, ContextMenu size can't be tested with a small height.)
* Fix handler creation to happen on init (#11172)Teemu Suo-Anttila2018-09-073-30/+37
| | | | Fix handler creation to happen on init
* Ensure that HeaderRow is not null in Grid (#11165)Anastasia Smirnova2018-09-072-0/+52
| | | | | Ensure that HeaderRow is not null in Grid Fixes #10485
* Fix handling of hidden Components in Grid(#10367)Marco Collovati2018-09-072-0/+156
|
* Force re-updating the resolutions of DateField (#11159)Anastasia Smirnova2018-09-062-0/+71
| | | Fixes #11099
* Upgrade to new Atmosphere (#11122), replace SSH proxy with java-based ↵Ilia Motornyi2018-09-048-56/+156
| | | | trivial one, fix tests
* Update tests for new Chrome (#11150)Ilia Motornyi2018-08-319-29/+40
|
* Lift frozen columns up to allow some z-index changes beneath them. (#11117)Anna Koskinen2018-08-212-0/+147
| | | Fixes #9787
* Set correct GWT .dtd definition (#11110)Ilia Motornyi2018-08-131-1/+1
|
* Fix Escalator to properly reset height by rows (#11090)Mehdi Javan2018-07-303-7/+90
|
* Fix Grid Editor closing and disabling at same time (#11078)Mehdi Javan2018-07-202-0/+181
| | | Fixes #10688
* Fix removal tabsheets if last one is selected (#11070)Ilia Motornyi2018-07-192-0/+65
| | | Fixes #10925
* Fix canceling Grid Editor during EditorOpenEvent (#11038)Teemu Suo-Anttila2018-07-112-0/+22
| | | Fixes #11002