Skip to content

Commit

Permalink
Enable ClearTest cases now supported by ChromeDriver
Browse files Browse the repository at this point in the history
Signed-off-by: Jim Evans <james.h.evans.jr@gmail.com>
  • Loading branch information
JohnChen0 authored and jimevans committed Dec 11, 2018
1 parent 3bf3cdb commit 501d844
Showing 1 changed file with 0 additions and 7 deletions.
7 changes: 0 additions & 7 deletions dotnet/test/common/ClearTest.cs
Original file line number Diff line number Diff line change
Expand Up @@ -117,7 +117,6 @@ public void ShouldBeAbleToClearUrlInput()
}

[Test]
[IgnoreBrowser(Browser.Chrome, "Driver sees range input as not editable")]
[IgnoreBrowser(Browser.Edge, "Driver sees range input as not editable")]
public void ShouldBeAbleToClearRangeInput()
{
Expand All @@ -136,7 +135,6 @@ public void ShouldBeAbleToClearCheckboxInput()
}

[Test]
[IgnoreBrowser(Browser.Chrome, "Driver sees color input as not editable")]
[IgnoreBrowser(Browser.Edge, "Driver sees color input as not editable")]
[IgnoreBrowser(Browser.IE, "Driver does not support clearing color elements")]
public void ShouldBeAbleToClearColorInput()
Expand All @@ -145,7 +143,6 @@ public void ShouldBeAbleToClearColorInput()
}

[Test]
[IgnoreBrowser(Browser.Chrome, "Driver sees date input as not editable")]
public void ShouldBeAbleToClearDateInput()
{
ShouldBeAbleToClearInput(By.Name("date_input"), "2017-11-22");
Expand All @@ -158,28 +155,24 @@ public void ShouldBeAbleToClearDatetimeInput()
}

[Test]
[IgnoreBrowser(Browser.Chrome, "Driver sees datetime input as not editable")]
public void ShouldBeAbleToClearDatetimeLocalInput()
{
ShouldBeAbleToClearInput(By.Name("datetime_local_input"), "2017-11-22T11:22");
}

[Test]
[IgnoreBrowser(Browser.Chrome, "Driver sees time input as not editable")]
public void ShouldBeAbleToClearTimeInput()
{
ShouldBeAbleToClearInput(By.Name("time_input"), "11:22");
}

[Test]
[IgnoreBrowser(Browser.Chrome, "Driver sees month input as not editable")]
public void ShouldBeAbleToClearMonthInput()
{
ShouldBeAbleToClearInput(By.Name("month_input"), "2017-11");
}

[Test]
[IgnoreBrowser(Browser.Chrome, "Driver sees week input as not editable")]
public void ShouldBeAbleToClearWeekInput()
{
ShouldBeAbleToClearInput(By.Name("week_input"), "2017-W47");
Expand Down

0 comments on commit 501d844

Please sign in to comment.