Skip to content

Commit

Permalink
updated project
Browse files Browse the repository at this point in the history
  • Loading branch information
Oleg-Mozhey committed Feb 21, 2024
1 parent 0a2fc49 commit 2c2a307
Show file tree
Hide file tree
Showing 28 changed files with 61 additions and 318 deletions.

This file was deleted.

This file was deleted.

This file was deleted.

21 changes: 0 additions & 21 deletions Behavioral.Automation.Bindings.UI/Abstractions/ILabelElement.cs

This file was deleted.

This file was deleted.

12 changes: 0 additions & 12 deletions Behavioral.Automation.Bindings.UI/Abstractions/IWebElement.cs

This file was deleted.

This file was deleted.

39 changes: 0 additions & 39 deletions Behavioral.Automation.Bindings.UI/Bindings/ButtonBindings.cs

This file was deleted.

15 changes: 0 additions & 15 deletions Behavioral.Automation.Bindings.UI/Bindings/CheckboxBindings.cs

This file was deleted.

15 changes: 0 additions & 15 deletions Behavioral.Automation.Bindings.UI/Bindings/InputBinding.cs

This file was deleted.

20 changes: 0 additions & 20 deletions Behavioral.Automation.Bindings.UI/Bindings/LabelBindings.cs

This file was deleted.

28 changes: 0 additions & 28 deletions Behavioral.Automation.Bindings.UI/Bindings/NavigationBinding.cs

This file was deleted.

21 changes: 0 additions & 21 deletions Behavioral.Automation.Bindings.UI/Bindings/PageBinding.cs

This file was deleted.

20 changes: 0 additions & 20 deletions Behavioral.Automation.Bindings.UI/Bindings/TableBinding.cs

This file was deleted.

11 changes: 0 additions & 11 deletions Behavioral.Automation.Bindings.UI/CHANGELOG.md

This file was deleted.

This file was deleted.

Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
namespace Behavioral.Automation.Bindings.UI.Abstractions;
namespace Behavioral.Automation.Interfaces.UI.Abstractions;

public class ElementSelector
{
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
namespace Behavioral.Automation.Bindings.UI.Abstractions;
namespace Behavioral.Automation.Interfaces.UI.Abstractions;

public interface IBrowser
{
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
namespace Behavioral.Automation.Bindings.UI.Abstractions;
namespace Behavioral.Automation.Interfaces.UI.Abstractions;

public interface IButtonElement : IWebElement
{
Expand Down
Original file line number Diff line number Diff line change
@@ -1,10 +1,9 @@
namespace Behavioral.Automation.Bindings.UI.Abstractions;
namespace Behavioral.Automation.Interfaces.UI.Abstractions;

public interface IPage
{
public Task GoToUrlAsync(string url);
public Task GoToApplicationUrlAsync();
public Task HaveTitleAsync(string title);
public Task<IFileChooser> RunAndWaitForFileChooserAsync(Func<Task> action);
public Task ScreenshotAsync(string path);
}
12 changes: 12 additions & 0 deletions Behavioral.Automation.Interfaces.UI/Abstractions/IWebElement.cs
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
using Behavioral.Automation.Interfaces.UI.Context;

namespace Behavioral.Automation.Interfaces.UI.Abstractions;

public interface IWebElement
{
public WebContext WebContext { get; }
public ElementSelector ElementSelector { get; }
public string? Description { get; set; }
public bool IsVisible();
public bool IsVisible(int delay);
}
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
namespace Behavioral.Automation.Bindings.UI.Abstractions;
namespace Behavioral.Automation.Interfaces.UI.Abstractions;

public interface IWebElementStorageService
{
Expand Down
Loading

0 comments on commit 2c2a307

Please sign in to comment.