summaryrefslogtreecommitdiffstats
path: root/uitest
Commit message (Collapse)AuthorAgeFilesLines
...
* Improvements to ScrollDestination sanity checks (#11772)Anna Koskinen2019-10-281-0/+92
| | | | | | | | - The new top row logical index should always be within the logical range and high enough up to avoid leaving a gap if possible. - Added regression testing for using the different scroll destination types for scrolling to the top and to the bottom by index. Fixes #11732
* Tweak a test to open Grid details row by clicking cell instead of row. (#11764)Anna Koskinen2019-10-251-7/+10
|
* Update chrome version to 78 (#11765)Zhe Sun2019-10-251-1/+1
|
* When ComboBox popup opens to the left accommodate margin/border/padding. ↵Anna Koskinen2019-10-232-0/+63
| | | | | (#11755) Fixes #11718
* Make sure expanding/collapsing updates expected cache size. (#11753)Anna Koskinen2019-10-222-0/+153
| | | | | | | | * Make sure expanding/collapsing updates expected cache size. Fixes #11749 * Merge branch 'master' into issue11749
* Make cancellation of uploads work regardless of Push configuration (#11743)Willem Verstraeten2019-10-215-6/+112
| | | | | | | | | | | | | | - Checking the push configuration outside of session lock threw an AssertionError, so the push configuration is not checked anymore. - The original problem with cancelling Upload was due to a subtle ordering issue that depended on the Push configuration. In the case of PushMode.AUTOMATIC, a new StreamVariable was added by the `Upload` component _before_ the `FileUploadHandler` got a chance to remove the old `StreamVariable`. As a result, the `FileUploadHandler` actually removed the fresh `StreamVariable`, breaking future uploads. Fixes #11682
* Upload should preserve MIMEType after first selection (#11745)Anastasia Smirnova2019-10-162-0/+156
| | | | | | | | | | | | | | | | * Upload should preserve MIMEType after first selection Fix #11698 Automated test is not run locally, need to continue with it * Remove unused imports * Add sleep time in testing purposes * Getting a new instance of an input, after file is downloaded Exclude IE from tests. Throws https://stackoverflow.com/questions/23883071/unhandled-alert-exception-modal-dialog-present-selenium , but checked manually and it works
* Update Chrome version to 77 (#11727)Zhe Sun2019-09-2413-1/+1
| | | | | | | | * Update Chrome version to 77 * update screenshots * update screenshots
* Fix scrollTo for destination START and END and add regression testing. (#11707)Anna Koskinen2019-09-052-0/+324
| | | | | | | | | | | - Initial implementation erroneously assumed that ScrollDestination.START would only be used for scrolling up and ScrollDestination.END for scrolling down. That's obviously not what they are for, otherwise everyone would be using ScrollDestination.ANY. - Moved actual scrolling to within the helper method that originally only calculated the new scroll position. Parent method became too long otherwise. Fixes #11706
* Updated row and spacer handling for Escalator (#11438)Anna Koskinen2019-08-2910-105/+663
| | | | | | | | | | | | | | | | | | | | | | | Updated row and spacer handling for Escalator. Main changes: - Spacers are only maintained and checked for rows that have DOM representation, and not at all if there is no details generator. This gives notable performance improvements to some particularly large Grids - Escalator no longer tries to trim away any rows that don't fit within the viewport just because a details row gets opened in Grid. This leads to some increase in simultaneous DOM elements, but simplifies the logic considerably. For example opening or closing details rows doesn't require checking the overall content validity beyond the details row itself anymore, but some repositioning at most. There are also no longer any orphaned spacers without corresponding DOM rows. - Spacers are better integrated into the overall position calculations. - Some public methods that are no longer used by Escalator or have changed functionality or order of operations. Any extending classes that tap into row, spacer, or scroll position handling are likely to need reworking after this update. - Auto-detecting row height is delayed until Escalator is both attached and displayed.
* Read-only styles shouldn't override borderless background styles. (#11692)Anna Koskinen2019-08-1612-14/+167
| | | | | | | | | | | * Read-only styles shouldn't override borderless background styles. - Fixed for ComboBox and DateField styles, other tested components already do it right. Fixes #11671 * Merge branch 'master' into issue11671
* Add explicit handling of ctrl-a (#11693)Tatu Lund2019-08-122-0/+57
| | | | | | | | * Add explicit handling of ctrl-a Fixes https://github.com/vaadin/framework/issues/11678 * Adds test case and formatting the code
* Update Chrome version, snapshots and fix tests (#11684)Zhe Sun2019-08-05194-34/+61
|
* Update screenshot (#11669)Zhe Sun2019-07-301-0/+0
|
* Apply offset to column index depending on presense of selection column (#11667)Tatu Lund2019-07-301-0/+67
| | | | | | | | * Apply offset to column index depending on presense of selection column After testing this manually I noticed that offset correction needs to be negative * Add the testing UI
* Ensure the upload button has been disabled when set Enabled calling from ↵Zhe Sun2019-07-292-0/+295
| | | | | | | | | succeedL… (#11655) * Ensure the upload button has been disabled when calling from succeedListener with Push enabled * Add Tests to verify
* Update to 8.10-SNAPSHOT (#11657)Zhe Sun2019-07-291-1/+1
|
* Use https for Maven repositories (#11668)Stéphane Nicoll2019-07-291-1/+1
| | | | * Use https for Maven repositories
* Ensure that VComboBox.selectedOptionKey gets initial selection. (#11665)Anna Koskinen2019-07-242-0/+82
| | | Fixes #10741
* Improvements to detail row index handling. (#11345)Anna Koskinen2019-07-165-0/+1021
| | | | | | - Escalator should notify when an existing details row is moved to a new index. - Grid and DetailsManagerConnector should update their internal indexing when details manager index changes in Escalator.
* 11642 refresh pagelength 0 combobox items after dataprovider update (#11653)Olli Tietäväinen2019-07-122-0/+166
| | | | | | * Fixes #11642. ComboBox with pageLength 0 should be updated if DataProvider changes * added comments, fixed imports
* Ensure the selection has been changed before updating . (#11658)Anna Koskinen2019-07-121-0/+51
| | | | | | | - Initial fix attempt interfered with selection events, added regression testing for those and found a better way to ensure shift selection works on IE11 also with Windows 7. Fixes #11608
* Fix unstable tests (#11648)Zhe Sun2019-07-045-19/+22
| | | | | * Fix unstable tests
* Fixes unstable/muted tests (#11640)8.9.0.alpha1Zhe Sun2019-06-284-15/+15
|
* Add Delay to unstable tests (#11638)Zhe Sun2019-06-273-5/+12
| | | | | | * Add Delay to unstable tests * Add sleep time
* Adding css class to Editor when on selected row (#11636)Tatu Lund2019-06-261-0/+24
| | | * Adding "v-grid-editor-selected" stylename in editor cell wrapper element when Grid is opened on selected row.
* Clicking on DateField pop-up should select Month/Year (#11531)Anastasia Smirnova2019-06-252-0/+141
| | | | | | | | | * Clicking on DateField pop-up should select Month/Year In Year/Month Resolution DateField should select the value, when user clicks on pop-up Fixes #8447
* Limit previous solution for non-push mode UI (#11629)Zhe Sun2019-06-242-0/+22
| | | | | | | | * add test case * Limit the workaround for non-push mode Fixes #11616
* Add IE11 workaround for ListSelect multiselection. (#11631)Anna Koskinen2019-06-201-0/+56
| | | Fixes #11608
* Separates a rpc for handling the client event order in DateTimeField (#11574)Zhe Sun2019-06-142-0/+93
| | | | | | | | * Using @Delayed annotation for DateField Rpc * Separate a rpc for handling the time change in DateTimeField * Add test case for wrong event order
* Improved fix for #11614 (#11618)Martin Vysny2019-06-133-3/+48
| | | | | | | | | | * #11614: Added test which demonstrates that the fix is incomplete * #11614: UI.doRefresh() only calls navigator when the navigation state actually changes * Added javadoc to Navigator.getCurrentNavigationState() * Minor: Removed accidental star imports
* Update Chrome version in Test (#11613)Zhe Sun2019-06-1233-86/+140
| | | | | | | | 1) recalculate the offset, as ChromeDriver starts to follow the standard; 2) update screenshots; 3) correct the `click()` call with using coordinates, related to 1) 4) `sendkey()` with using key.modifier adjustment 5) add sleep 6) workaround for mastery failures
* Fix regression that broke PreserveOnRefresh functionality with Navigator ↵Tatu Lund2019-06-072-0/+54
| | | | | | | | | | | (#11615) * Fix regression that broke PreserveOnRefresh functionality with Navigator Fixes https://github.com/vaadin/framework/issues/11614 Old patch https://github.com/vaadin/framework/issues/11416 calls navigateTo allways when Navigator is present, which is wrong, since it is needed only when navigation state has truly changed. * Add test to the fix
* Recalculate the column widths before the first row is added (#11609)Zhe Sun2019-06-063-0/+86
| | | | | | | * Recalculate the column widths before the first row is added Fixes #11607
* Grid Editor: make Tab key skip read-only/disabled fields (#11586)Martin Vysny2019-06-032-4/+25
| | | | | | | | | | | | | | | | * Grid Editor: make Tab key skip read-only/disabled fields Closes #11584 * Extracted DefaultEditorEventHandler.getDeltaFromKeyDownEvent() which allows for easy further Grid Editor customization * Make DefaultEditorEventHandler.Delta public so that getDeltaFromKeyDownEvent() can be overridden * Fixed exception in isEditable() if the widget was not a Field * Refactored DefaultEditorEventHandler.Delta to CursorMoveDelta which expresses the intent more clearly * Merge branch 'master' into master
* Fix Grid reordering when there are hidden columnscuong-phan2019-05-202-0/+110
| | | | | | | | * Fix grid column reordering Fix grid column reordering when there are hidden columns and footerRow.join * Add test
* Don't attempt to scroll to the beginning or end if Grid has no rows. (#11570)Anna Koskinen2019-05-201-0/+61
| | | Fixes #11558
* Fix duplicate grid column visibility change event (#11565)cuong-phan2019-05-162-0/+103
| | | | | | | | * Fix duplicate grid column visibility change event Toggle a column visibility through UI will fire 2 event. There should be only 1. * Add Test
* Grid editor: TAB now skips non-editable columns (#11573)Martin Vysny2019-05-162-0/+232
| | | | | | | | | | | * Grid editor: TAB now skips non-editable columns Pressing TAB would shift the focus to non-editable cells when the Grid was in edit mode. This patch makes DefaultEditorEventHandler to skip such columns. Closes #10970 * Add tests
* Reduce Grid's sort complexity. (#11566)Anna Koskinen2019-05-152-0/+88
| | | | | | - limit DataCommunicator workaround from #11320 to ComboBox only - don't reset DataCommunicator before modifying all sorting data Fixes #11532
* Add handling for completely empty Grid's column width calculations. (#11569)Anna Koskinen2019-05-141-0/+60
| | | Fixes #11557
* code format (#11555)Sun Zhe2019-05-026-12/+14
|
* Code format (#11548)Sun Zhe2019-04-296-8/+7
| | | | | | * Code format * Merge branch 'master' into code-format
* Replace the screenshot usage in framework test (#11547)Sun Zhe2019-04-2930-43/+65
| | | | | | | | | - Replace the GridDisabledTest screenshot usage - Replace the screenshot tests in BasicCrudGridEditorRowTest - Replace the screenshot tests in ComboboxVaadinIcons - Replace the screenshot tests in ValoThemeUITest::accordions - Added screenshotcomparetolerance to some screenshot test to make tests stable
* Update browser version in the test (#11550)Sun Zhe2019-04-251-1/+1
|
* Reset Combobox internal state (#11412)Sun Zhe2019-04-242-0/+254
| | | | | | | | | | issue in #11343 and #11385 is not reproducible on top this patch Three different bugs are involved in this fix: we bring the old fix(#11094) back and fixed the other related issues: 1) allow adding the same new item after dataProvider got reset, This is cause by the client side parameter `LastNewItemString`, it saves the value added before resetting. 2) clear the pending newItem eagerly, so that the same value will not be added again.
* Update to 8.9 (#11535)Sun Zhe2019-04-181-1/+1
| | | | | | * Update to 8.9-SNAPSHOT * update in bom module
* Clicking on slider makes handler move (#11519)Anastasia Smirnova2019-04-102-0/+97
| | | | | | | | | | | | | | * Clicking on slider makes handler move Fixes #1496 * Introducing control over clicking behaviour - User will have to enable process of the click event on handle calling `slider.setEnableClickHandler(true);` - Clean-up the handler logic in VSlider.java - Renaming the property to `updateValueOnClick` - Added JavaDocs - Fixing tests
* Add delay to the unstable test (#11538)Sun Zhe2019-04-092-1/+2
| | | * Add delay to the unstable test
* Use Enter and Space keys to fire Window header buttons (#11517) (#11534)KatriHaapalinna2019-04-082-0/+442
| | | | | | | | | | * Fixes 11517. Use ENTER and SPACE keys as shortcuts for header buttons * Merge branch 'master' into fix-11517 * Increase sleep time for test failing in validation * Merge branch 'master' into fix-11517