-
Notifications
You must be signed in to change notification settings - Fork 12
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #355 from paveljandejsek/knownIssuesMd
Added known issues section to markdown docs.
- Loading branch information
Showing
3 changed files
with
22 additions
and
0 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
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,18 @@ | ||
[Contents](../README.md) | ||
## Known issues | ||
|
||
- [UI testing](#ui-testing) | ||
- [Reports](#reports) | ||
|
||
### UI testing | ||
#### Wrong element selected when using JavaScript frameworks that change DOM structures often | ||
When testing UIs written in JS frameworks changing DOM structure on the fly (React, Angular, etc.) | ||
you can sometimes encounter problems with selectors selecting different elements than expected (due to not all elements being present in DOM tree at the time when the selecting happens). | ||
|
||
This is sadly a Selenium related issue which we cannot fix. | ||
In case you encounter this behavior then a solution for this is to introduce some static wait before running the selector. | ||
|
||
### Reports | ||
#### Broken Reports when using JBehave parametrised test with Examples keyword | ||
Our reports are currently not being generated in a way that supports the `Examples` keyword. | ||
See [#80](https://github.com/EmbedITCZ/jbehave-support/issues/80) for more details. |