aboutsummaryrefslogtreecommitdiffstats
path: root/uitest
Commit message (Collapse)AuthorAgeFilesLines
* Chrome updated to version 92 (#12359)Anna Koskinen2021-08-09148-1/+1
|
* Chrome version updated (#12277)Anna Koskinen2021-04-266-1/+1
|
* fix: Do not allow border to grow row height (#12254)7.7.25Tatu Lund2021-03-251-0/+0
| | | | | | | | | | | | | | | | | | | | | | | | * fix: Do not allow border to grow row height If css grows row height the VSrollTable rowHeight logic does not work allways Fixes: https://github.com/vaadin/framework/issues/12251 * Compensate change in default row height * Merge branch '7.7' into fix12251 * Replace calc with round * Make fix more pin-point * The first row does not have border thus regular height * Fix drag-drop styles * Further fix in drag-and-drop style * Update TableDropIndicatorValoTest-indicator_ANY_Chrome__indicator.png
* Chore: Change Jetty version to 9.4.38.v20210224 (#12252)Tarek Oraby2021-03-243-7/+10
| | | | | * Update Jetty version to 9.4.38.v20210224 * Update tests
* Update copyright year (#12243)Anna Koskinen2021-03-16614-649/+649
|
* Test fixes and tweaks (#12239)Anna Koskinen2021-03-168-46/+82
| | | | | | | | | | | | | | - Properly init client-side data in GridDataChangeHandlerTest - Update Chrome version - Separate and refactor ComboboxMenuBarAutoopenTest test cases to match test description - Update screenshot for ResponsiveStylesTest - Refactor TextAreaEventPropagationTest to better match expected behavior - Add delay to GridDetailsClientTest and EscalatorSpacerTest for stability - Add delay and retries to TreeItemDoubleClickTest for stability Co-authored-by: Teemu Suo-Anttila <teemusa@vaadin.com>
* Update Chrome screenshots (#12198)7.7.24Tarek Oraby2021-02-0935-0/+0
|
* fix: use time-constant comparison for security tokens (#12192)Tatu Lund2021-02-031-1/+1
| | | | | | | | This is the same as #12190, but also applied for the upload security key and the push id since both of those are also used to protect against cross-site attacks. In addition, documentation for the push id is clarified to point out its role. Backporting of #12189
* Make checkAtmosphereSupport() non-static (#12136)Tatu Lund2020-11-271-1/+1
| | | Cherry pick https://github.com/vaadin/framework/pull/12131
* Change license from Apache-2 to CVDLv4 (#12144)Tatu Lund2020-11-18614-3076/+3076
| | | | | | | | | | | | | | * Change license from Apache-2 to CVDLv4 * Update header for checkstyle * Add license checker * Fix reference header * Fix license header * Update Chrome version
* Test fixes (#12108)Anna Koskinen2020-10-025-7/+29
| | | | | | - Updated Chrome version - Added leeway to ComboBox popup following along while scrolling - Added workarounds to timing issues that aren't relevant for the tests - Added delays for stability
* Update browsers' screenshots (#12034)Tarek Oraby2020-06-17210-1/+1
| | | | | | | | | * Updated browsers' screenshots * Update browsers' screenshots * Update chrome version to 83 Co-authored-by: Anna Koskinen <Ansku@users.noreply.github.com>
* Updated browsers' screenshots (#11986)Tarek Oraby2020-05-08688-0/+0
| | | Co-authored-by: Anna Koskinen <Ansku@users.noreply.github.com>
* Fix indexing issue in Grid resize when scrolled to bottom. (#11984)Anna Koskinen2020-05-081-0/+34
| | | Fixes #11893
* Fix incorrect position of column selector in MPR (#11946)Mehdi Javan2020-04-163-1/+1
| | | | | | | | | | | | * Change ContextMenu position from absolute to fixed * Use getBoundingClientRect to get the coordinates of columnSelector in VScrollTable when the context menu is being opened * Update TableTooManyColumnsTest screenshot * Upgrade Chrome version in VerifyBrowserVersionTest * Update ValoThemeUITest-sliders screenshot
* Fix generics type in test (#9977) (#11819)Anna Koskinen2019-11-211-1/+1
| | | This fixes a compilation error with Eclipse Oxygen.
* Added missing package statement. (#11820)Anna Koskinen2019-11-211-1/+3
|
* Tweaked layouttester tests to be more informative. (#11800)Anna Koskinen2019-11-12120-45/+496
|
* Tests updated to Chrome 78 (#11794)Anna Koskinen2019-11-06280-8/+13
|
* Table / TreeTable multiselect disabling of touch detection (#11641)Olli Tietäväinen2019-07-017-3/+207
| | | | | | * Fixes #11601. Add toggle for disabling touch detection on table multiselect. * fix tests
* Test with browser update to Chrome 75 (#11633)Zhe Sun2019-06-2643-132/+195
| | | Fixes failed tests
* pick Panel HTML caption changes from master (#11589)Olli Tietäväinen2019-05-214-0/+56
|
* Fix validation failures. (#11578)Sun Zhe2019-05-16104-1/+6
| | | | | | * Correct failing test and add sleep * Update screenshots
* Fixes a Grid issue that breaks sorting. (#10999)duffrohde2019-04-022-0/+24
| | | | | | | | | | | | * Fixes a Grid issue that breaks sorting. When multi-select has been enabled and disabled a number of times, sorting on the first column in a Grid is broken. Unregistering a click handler on the header solves the problem. * Added a test checking that sorting of a grid column still works after having enabled and then disabled multi select mode. The grid is configured with an extra header row containing a text box since it triggers an exception if the header click handler for the multi select column is not removed. * Remove an unused import that was added by mistake
* copied waitUntil to selectMenuPath from FW8 (#11415)Olli Tietäväinen2019-01-101-0/+9
|
* V7: Improve VMenuBar click handling logic (#11362)Anastasia Smirnova2018-12-142-0/+85
| | | | | | | | | | | | | | | | | | | | | | * Improve VMenuBar click handling logic Backport to V7: During `updateFromUIDL` inside MenuBarConnector we empty and re-instantiate the components of MenuBar. When we are modifying the Menubar from the BlurEventListener of another component, we ,by this, remove widgets, therefore clickEvent is not fired and the action of the MenuItem is not proceed as a result. (The BlurEvent is fired before the click event in the chain of events. ) To improve the situation, we catch onMouseDown event , which is fired before BlurEvent,by assigning mouseDown flag to true. Then if no click event has yet happened, we delay the execution of update inside `updateFromUIDL` by default 500 ms. Then if click event occurs, it proceeds normally. The time can be increased/decreased using setter. There is no delay, if we are clicking on the MenuBar as usual or no Blur listener is set. This change allows setting descriptions preserving the action from the MenuItem (cherry picked from commit 22cc85c76f28a762685204911ad66f95bda2d296) * Improve VMenuBar click handling logic Add missing files from the first commit Backported to V7: (cherry picked from commit 22cc85c)
* 7 7 ie11 screenshots (#11364)Olli Tietäväinen2018-12-111-1/+1
| | | 7.7 reference screenshot directory
* ie11 screenshots (#11357)Olli Tietäväinen2018-12-05252-0/+0
|
* updated Firefox screenshots (#11349)Olli Tietäväinen2018-12-03471-0/+0
|
* removed tests that are broken on headless Chrome which doesn't allow ↵Olli Tietäväinen2018-11-296-316/+0
| | | | resizing (#11342)
* Test fixes and IE 10 screenshots (#11277)sergey-vaadin2018-11-16423-15/+7
|
* Fix Combo Box filtered on Property not showing results when page length is ↵Vlad2018-11-082-0/+107
| | | | | | | | | | | | zero (#11247) * Fix #11246 Take zero pageLength into account when calculating filtered ComboBox contents. * Create ComboboxPageLengthZeroFilterTest.java * add UI tests for fix
* IE9 test screenshots (#11275)sergey-vaadin2018-10-25490-0/+0
| | | | * IE9 screenshots
* IE8 screenshots (#11273)sergey-vaadin2018-10-24948-0/+0
|
* IE11 test screenshots 2 (#11270)sergey-vaadin2018-10-23454-0/+0
|
* IE11 test screenshots (#11258)sergey-vaadin2018-10-1814-0/+0
|
* Tests (wrong screenshots and JRE version, delay) (#11255)sergey-vaadin2018-10-174-3/+4
| | | | | | * wrong screenshots and JRE version * delay for submenu
* test fix (missing and wrong screenshots) (#11251)sergey-vaadin2018-10-174-1/+1
|
* potential fixes for the tests (#11226)sergey-vaadin2018-10-102-1/+4
| | | | * potential fixes for the tests
* Updating screenshots (#11190)7.7.15Anastasia Smirnova2018-09-19177-1/+1
| | | Updating screenshots
* 7.7 fix upload test (#11162)Ilia Motornyi2018-09-052-11/+32
| | | | | | | Restore InterruptUploadTest functionality, fix TextChangeEventsTest Fixes #11161
* Add configuration for BrowserStack testing (#11164)Teemu Suo-Anttila2018-09-053-22/+29
|
* Use Chrome for validation buildsTeemu Suo-Anttila2018-09-04562-859/+527
|
* 7.7 new atmosphere, fix tests, remove SSH requirementsIlia Motornyi2018-09-046-51/+136
|
* Run devserver under IDEA via maven target (#11152)Ilia Motornyi2018-08-301-0/+39
|
* Introduce servlet container tests from Vaadin 8 (#11128)Teemu Suo-Anttila2018-08-241-34/+0
|
* Use maven to run PhantomJS tests (#11121)Teemu Suo-Anttila2018-08-214-124/+102
|
* Fix Chrome version and Chrome border width in tests (#11119)eriklumme2018-08-212-3/+2
|
* Compensate for Grid editor moving out of sync horizontally. (#11092)Anna Koskinen2018-08-132-0/+96
| | | Fixes #10998
* Fix validation build to work with new build agents (#11054)Teemu Suo-Anttila2018-07-171-0/+3
|