-
-
Notifications
You must be signed in to change notification settings - Fork 524
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* PageElements can now be used in Action Classes * PageElements can now be used in Action Classes * Removed old datatable files to fix #2667. * Improved support for aria-labels in the PageElement components. * Fixed a broken unit test. * Minor refactoring. * Minor test refactoring * Unit test fixes * Added better reporing on the number of test cases vs the number of scenarios * Fixed #2660 * Minor refactoring * Updated to appium 8.0.0-beta2 * fixed syntax error in pom file * minor refactoring * [ci skip] prepare release 3.1.16 * [ci skip] prepare for next development iteration * [maven-release-plugin] rollback the release of 3.1.16 * [ci skip] prepare release 3.1.16 * [maven-release-plugin] rollback the release of 3.1.16 * [ci skip] prepare release 3.1.16 * [ci skip] prepare for next development iteration * Added possessive pronouns to Screenplay defaults * Fixed an error in reporting test duration statistics with data-driven tests * Minor refactoring * Minor performance improvements * Extend Playwright integration (#2681) * Refactor Playwright screenshot. * Implement screenshots for SERENITY_TAKE_SCREENSHOTS: FOR_FAILURES and FOR_EACH_ACTION. * Update return classes for Open action. * Add Playwright actions to open page from class. Divide Playwright questions and add methods to get text of multiple matching elements. * Use LOGGER.debug instead of System.out.println and fix NPE in BrowseTheWebWithPlaywright. * Use ScreenshotPermission instead of hardcoded screenshot levels for Playwright. * Upgrade Playwright. Implement SelectFromOptions interaction. * Implement Select interactions by index and visible text for Playwright. * Implement Ensure.currentValue to check current vales of input, textarea and select. * Update Javadoc * Implement Attribute question. * Implement SelectOptions and Visibility questions. Co-authored-by: Serghei Pogodin <serghei.pogodin@rabobank.nl> * Fixed a bug where requirements where not reported when defined in WebTestScenario tests * Removed an unnecessary test * [ci skip] prepare release 3.1.17 * [ci skip] prepare for next development iteration * [ci skip] prepare release 3.1.18 * [ci skip] prepare for next development iteration * Updated to Selenium 4.1.2 * [ci skip] prepare release 3.1.20 * [ci skip] prepare for next development iteration * Removed the @deprecated annotation from some of the WebElementFacade methods. * Updated the Page Elements classes * Fixed library security issues due to colors.js and xstream 1.4.18 * Bump xstream from 1.4.18 to 1.4.19 (#2683) Bumps [xstream](https://github.com/x-stream/xstream) from 1.4.18 to 1.4.19. - [Release notes](https://github.com/x-stream/xstream/releases) - [Commits](https://github.com/x-stream/xstream/commits) --- updated-dependencies: - dependency-name: com.thoughtworks.xstream:xstream dependency-type: direct:production ... Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> * Create SECURITY.md * 🚑 FIX an error when executing actions on After methods (#2693) * serenity-junit5: replace org.junit.AssumptionViolatedException with org.opentest4j.TestAbortedException (#2687) * Update README.md * Fixed #2695 * Minor refactoring. * Fixed an issue with capitalisation of test titles containing apostrophes. * Refactoring. * Performance enhancements * Updated some javadocs regarding proxy settings * Updated proxy documentation in Javadoc * Refactored to make unit tests less OS-specific * Refactored to make unit tests less OS-specific * Switch some tests to Firefox for variety * Use a standardised path for requirements to make the tests less OS-dependent * Fixed a potential Windows-specific issue when reading requirements * fix: BrowserStack session properties not parsed correctly if null (#2701) Co-authored-by: Keith <xxthePantzxx@gmail.com> * Fixed Windows-specific issue related to analysing requirements * Fixed OS-specific unit tests * Requirements display the parent requirement if duplicate requirement names are present * Improvements in the requirements reporting * Fixed #2688 * [ci skip] prepare release 3.2.0 * [ci skip] prepare for next development iteration * Updated javadocs * Added release notes for version 3.2.0 * Update README.md * Updated release notes * Added Javadoc for shadow dom locators * Update README.md * Create codeql-analysis.yml * Delete codeql-analysis.yml * improve parallel support for JUnit5 tests * fix Junit Test Co-authored-by: John Ferguson Smart <john.smart@wakaleo.com> Co-authored-by: Serghei Pogodin <pogodin.serg@gmail.com> Co-authored-by: Serghei Pogodin <serghei.pogodin@rabobank.nl> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: ricardo larrahondo <ricardolarrahondo2@hotmail.com> Co-authored-by: zeners <zener@sbg.at> Co-authored-by: Keith Tremorin <thePantz@users.noreply.github.com> Co-authored-by: Keith <xxthePantzxx@gmail.com>
- Loading branch information
1 parent
376f07a
commit 0e05112
Showing
754 changed files
with
4,763 additions
and
99,043 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
# Security Policy | ||
|
||
## Supported Versions | ||
|
||
The following versions are currently being supported with Security updates | ||
|
||
| Version | Supported | | ||
| ------- | ------------------ | | ||
| 3.2.x | :white_check_mark: | | ||
| <= 3.1.x | :x: | | ||
|
||
## Reporting a Vulnerability | ||
|
||
To report a vunerability, raise an issue and include the "security" label. Security vunerabilities are reviewed and assessed as high priority issues. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
# Serenity 3.2.0 | ||
|
||
Serenity 3.2.0 contains a number of bug fixes and enhancements, including: | ||
- Improved performance in report generation | ||
- Updated the Page Elements API (https://serenity-bdd.github.io/documentation/docs/guide/page_elements) | ||
- Improved requirements reporting to include more comprehensive requirements tables and better support for deep requirements hierarchies | ||
- Collections of elements retrieved with findAll() methods and then processed (e.g. `findAll(".myelements").texts()`) will now automatically requery if a stale element exception occurs. You can disable this behaviour by setting the `webdriver.retry.on.stable.element.exception` property to false. | ||
- Improved Playwright/Screenplay integration | ||
- Support for @singlebrowser annotation in Cucumber scenarios | ||
- Bug fixes include: | ||
- [2687](https://github.com/serenity-bdd/serenity-core/issues/2687) | ||
- [2693](https://github.com/serenity-bdd/serenity-core/issues/#2693) | ||
- [2660](https://github.com/serenity-bdd/serenity-core/issues/#2660) | ||
- [2667](https://github.com/serenity-bdd/serenity-core/issues/#2667) | ||
- [2655](https://github.com/serenity-bdd/serenity-core/issues/#2655) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.