aboutsummaryrefslogtreecommitdiffstats
path: root/uitest/src/test
Commit message (Collapse)AuthorAgeFilesLines
...
* Remove unused imports (#10330)Ahmed Ashour2017-11-212-4/+0
|
* Update testbench version (#10336)Guille2017-11-201-24/+0
|
* Fix setting custom tab index for TabSheet or Accordion (#9574) (#10278)Ansku2017-11-101-7/+16
|
* Add ContentMode for row and cell descriptions in Grid (#10282)Teemu Suo-Anttila2017-11-101-6/+121
|
* Make focus circulate in modal dialog to improve accessibility (#10260)Péter Török2017-11-071-1/+7
| | | Make focus circulate in modal dialog to improve accessibility
* Use lambda expressions. (#10268)Ahmed Ashour2017-11-0121-270/+96
|
* Fix end of line comments, which were made by automatic formatter (#10234)Ahmed Ashour2017-10-3110-31/+38
|
* Fix combo box suggestion popup height (#10256)Adam Wagner2017-10-301-0/+38
| | | Fixes #10214
* add Grid.Column#get/setAssistiveCaption (#10219)Knoobie2017-10-301-0/+49
| | | | | | | | | | | | | | | | | | | | | | | | * add Grid#Column#get/setAssistiveCaption * fix test and update doc * move testGridAssistiveCaption to GridTest * delete test file * delete test file * Delete GridAssistiveCaptionTest.java * Create GridAssistiveCaptionTest * Create GridAssistiveCaption * Rename GridAssistiveCaption to GridAssistiveCaption.java * Rename GridAssistiveCaptionTest to GridAssistiveCaptionTest.java * Reformat using eclipse
* Use lambda with Handlers (#10229)Ahmed Ashour2017-10-273-8/+8
| | | Also improve naming by replacing one-letter variable names.
* Use lambda with Listeners (#10222)Ahmed Ashour2017-10-263-6/+7
| | | Also use "event" as the name for events
* Remove trailing spaces (#10224)Ahmed Ashour2017-10-262-2/+2
|
* Grid column to be sortable when implemented/supported (Fixes #8792). (#10190)Ahmed Ashour2017-10-235-27/+199
| | | | | | | | | | | * Grid column to be sortable when implemented/supported * Fix GridDeclarativeTest * Parameterize to Grid<Person> * Revert Parameterize to Grid<Person>, JDK with generics. * Assertions for other columns * Fix test Fixes #8792
* Check class name type on Grid cell mouse over (#10194)Adam Wagner2017-10-201-0/+24
| | | | | | | | | | * Check whether className is of type string * Move string type checker method to widget util * Fix formatting of WidgetUtil * Break svg into lines
* Improve role usage in grid (#10206)Knoobie2017-10-201-1/+9
| | | | | | | | | | | | | | | | | | | | | | | | * add role="row" and role="gridcell" * optimize code and add additional rows for the header * add simple test * improve code and add rowgroup * add debug log * add more log to test * remove debug test info and add role before appending to tr * wording - change contains to contain * create enum for magic strings, change comments and method signature * rename enum to be singular and rename param roleName to role * update javadoc, rename and make enum public
* Use .toLowerCase and .toUpperCase(Locale.ROOT) (#10182)Ahmed Ashour2017-10-2024-124/+154
| | | | | | | | * Use .toLowerCase and .toUpperCase(Locale.ROOT) * Spaces * add spaces after if(
* Add spaces after 'if' and 'for' in JavaScript (#10199)Ahmed Ashour2017-10-202-2/+2
| | | | | | | | * Add spaces after 'if' and 'for' in JavaScript * Revert to old format * Remove whitespaces
* Simplify lambda expressions (#10198)Ahmed Ashour2017-10-201-15/+12
| | | | | | | | * Simplify lambda expressions And remove unneeded 'return' keyword. * Format
* AbstractDateField: set value after being invalid (#10187)Ahmed Ashour2017-10-201-0/+76
| | | | Fixes #9763 Fixes #9978
* Fix AbstractDateField to correctly show week day names (#10188)Ahmed Ashour2017-10-161-0/+64
| | | Fixes #9200
* Simplify waitUntil() in tests (#10181)Ahmed Ashour2017-10-1323-200/+58
|
* Use Collection.isEmpty() (#10172)Ahmed Ashour2017-10-128-20/+21
|
* Add ErrorLevel to Validators and results (#10099)Teemu Suo-Anttila2017-10-111-0/+41
| | | Fixes #9792
* Add aria-rowcount to grid (#10167)Knoobie2017-10-112-0/+147
| | | This is based on discussion from vaadin/vaadin-grid#1023 .
* Remove unneeded .toString() (#10141)Ahmed Ashour2017-10-103-6/+3
|
* Edit grid row by index - server side (#10040)Piotr Wilkin2017-10-101-2/+27
| | | | | Opening grid editor from server side. Fixes #8477. Addressing #8820 will be the user's responsibility as fetching index of item might be slow.
* Fix typos (#10124)Ahmed Ashour2017-10-049-27/+27
|
* Add role="grid" and aria-multiselectable to grid (#10009)Knoobie2017-10-041-0/+50
| | | Also adds aria-selected for grid rows.
* Use static import of Assert in tests (#10126)Ahmed Ashour2017-10-03431-2376/+2743
| | | | Also removes dependency on junit.framework.TestCase .
* Simplify conditional logic. (#10122)Ahmed Ashour2017-10-021-1/+0
| | | And remove unused imports.
* Remove auto-generated comment (#10111)Ahmed Ashour2017-09-293-13/+3
|
* Handle 'z' (timezone) in AbstractDateField.setDateFormat() (#8844)Ahmed Ashour2017-09-281-0/+204
|
* Update browser version test for Chrome 61 (#10098)Henri Sara2017-09-271-1/+1
|
* Fix typos (#10095)Ahmed Ashour2017-09-273-3/+3
|
* Support addCloseListener for Notification (#10027)Ahmed Ashour2017-09-271-0/+49
| | | | | Converts Notification to an Extension and adds support for listening to the closing of notifications. Fixes #888
* Add option to use PushState instead of URI fragments in Navigator (#10042)Teemu Suo-Anttila2017-09-271-0/+5
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * Navigator now by default uses pushState and normal URLs * added documentation for pushState and updated Navigator documentation * improving docs etc, adding one TODO to be solved before merging * pushState/replaceState no work better with changing titles * Making uri fragment navigator work when not using specially mapped UI * Revert to older default, add annotation for selecting * Fix tests, add null checks * Reorder if-clause, fix tests * Revert unnecessary test change * Use correct variable in UI, fix test clean up * Updates to JavaDocs, fix some methods and tests * Add comments, fix test ui, TODO for fallbacks * Navigation documentation, JavaDocs, removed TODOs * Documentation fixes * Improve JavaDocs * Fix link name in documentation * Improve throws declaration in getLocation * Change documentation about the PushState based navigation * Add since tags * Add since tags for UI
* Implement error level on client side (#9817)Adam Wagner2017-09-272-2/+162
| | | | | | | Add additional class names and style to components and error indicators to distinguish different error levels. Vaadin 8 implementation of #9816. Cherry picked changes and added compatibility package component changes and tests. Resolves #3139
* Relayout GridLayout when font loading completes (#10077)Henri Sara2017-09-262-0/+64
| | | | | | If a GridLayout is used and font loading is not complete, force another layout after all fonts are loaded. Fixes #9921 Fixes #8207
* Fix TreeGrid double click event in hierarchy column (#10070)Adam Wagner2017-09-251-0/+36
| | | Fixes #9868
* Fix typos (#10071)Ahmed Ashour2017-09-251-2/+2
| | | And use varargs in a test.
* Construct array inline (#10068)Ahmed Ashour2017-09-2317-37/+37
| | | And some trivial test enhancements
* Fix javadoc references (#10067)Ahmed Ashour2017-09-235-22/+0
| | | And remove unused imports.
* Remove unused methods. (#10058)Ahmed Ashour2017-09-221-4/+0
|
* Replace CRLF with LF (#10062)Henri Sara2017-09-221-34/+34
| | | | | | | After this change, .gitattributes will take care of keeping native line endings. * Replace CRLF with LF in non-Java files
* Replace tabs with spaces in Java filesHenri Sara2017-09-221-3/+3
|
* Update modifier order to follow Java Specification suggestions (#10050)Ahmed Ashour2017-09-216-13/+13
| | | Also includes some other minor cleanup.
* Remove unused methods (#10020)Ahmed Ashour2017-09-203-17/+0
|
* Fix ColorPickerGrid indexingHenri Sara2017-09-201-0/+43
| | | Fixes #9018
* Use simple class namesAhmed Ashour2017-09-201-1/+1
|
* Show validation error selecting invalid date from DateField (#10013)Marco Collovati2017-09-201-0/+57
| | | | | | | | | | 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