-
Notifications
You must be signed in to change notification settings - Fork 6
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Browse files
Browse the repository at this point in the history
OSOE-47: Add VerifyElementTexts extension, interface for PageNavigationState, EnableApplicationInsightsOfflineOperation() extension method
- Loading branch information
Showing
6 changed files
with
87 additions
and
17 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
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,22 @@ | ||
using System; | ||
|
||
namespace Lombiq.Tests.UI.Models | ||
{ | ||
/// <summary> | ||
/// Represents a state of some web content that may change, for example via page navigation or dynamic content after | ||
/// user interaction. | ||
/// </summary> | ||
public interface IWebContentState | ||
{ | ||
/// <summary> | ||
/// Returns <see langword="true"/> if navigation has occurred or the content has changed based on some | ||
/// previously provided content. | ||
/// </summary> | ||
bool CheckIfNavigationHasOccurred(); | ||
|
||
/// <summary> | ||
/// Waits until <see cref="CheckIfNavigationHasOccurred"/> evaluates to <see langword="true"/>. | ||
/// </summary> | ||
public void Wait(TimeSpan? timeout = null, TimeSpan? interval = null); | ||
} | ||
} |
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