-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Feature: Log element property getters (#76) +semver: minor
* Enhance LocalizationManager to get value from core if the key is missed in passed assembly * Added logging of values for GetAttribute and Text of Element * Added configuration to be able to disable LogPageSource functionality * add Configuration property to ILocalizedLogger * Added logging to ElementStateProvider's waiting functions * Update webDriverVersion to 83 in pipeline yml file
- Loading branch information
Showing
23 changed files
with
279 additions
and
41 deletions.
There are no files selected for viewing
17 changes: 17 additions & 0 deletions
17
Aquality.Selenium.Core/src/Aquality.Selenium.Core/Aquality.Selenium.Core.xml
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
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
9 changes: 9 additions & 0 deletions
9
Aquality.Selenium.Core/src/Aquality.Selenium.Core/Elements/LogElementState.cs
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,9 @@ | ||
namespace Aquality.Selenium.Core.Elements | ||
{ | ||
/// <summary> | ||
/// Logs element state. | ||
/// </summary> | ||
/// <param name="messageKey">Key of localized message to log.</param> | ||
/// <param name="stateKey">Key of localized state to log.</param> | ||
public delegate void LogElementState(string messageKey, string stateKey); | ||
} |
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.