Skip to content

Commit 2ef3f60

Browse files
committed
Updating .NET to include fix for clearing <input type='number'> fields
This fixes the Firefox driver shipped with the bindings.
1 parent 78ca285 commit 2ef3f60

File tree

6 files changed

+13
-13
lines changed

6 files changed

+13
-13
lines changed

dotnet/CHANGELOG

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,8 @@
1+
v2.48.2
2+
=======
3+
* Release containing fix to Firefox driver bug when clearing input fields of
4+
type number.
5+
16
v2.48.1
27
=======
38
* Various updates in communicating with remote ends using the W3C dialect of

dotnet/src/core/Properties/AssemblyInfo.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,5 +21,5 @@
2121
// Minor Version
2222
// Build Number
2323
// Revision
24-
[assembly: AssemblyVersion("2.48.1.0")]
25-
[assembly: AssemblyFileVersion("2.48.1.0")]
24+
[assembly: AssemblyVersion("2.48.2.0")]
25+
[assembly: AssemblyFileVersion("2.48.2.0")]

dotnet/src/support/Properties/AssemblyInfo.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -50,5 +50,5 @@
5050
// Minor Version
5151
// Build Number
5252
// Revision
53-
[assembly: AssemblyVersion("2.48.1.0")]
54-
[assembly: AssemblyFileVersion("2.48.1.0")]
53+
[assembly: AssemblyVersion("2.48.2.0")]
54+
[assembly: AssemblyFileVersion("2.48.2.0")]

dotnet/src/webdriver/Properties/AssemblyInfo.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -49,5 +49,5 @@
4949
// Minor Version
5050
// Build Number
5151
// Revision
52-
[assembly: AssemblyVersion("2.48.1.0")]
53-
[assembly: AssemblyFileVersion("2.48.1.0")]
52+
[assembly: AssemblyVersion("2.48.2.0")]
53+
[assembly: AssemblyFileVersion("2.48.2.0")]

dotnet/src/webdriverbackedselenium/Properties/AssemblyInfo.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -50,5 +50,5 @@
5050
// Minor Version
5151
// Build Number
5252
// Revision
53-
[assembly: AssemblyVersion("2.48.1.0")]
54-
[assembly: AssemblyFileVersion("2.48.1.0")]
53+
[assembly: AssemblyVersion("2.48.2.0")]
54+
[assembly: AssemblyFileVersion("2.48.2.0")]

dotnet/test/common/TypingTest.cs

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -805,11 +805,6 @@ public void CanSafelyTypeOnElementThatIsRemovedFromTheDomOnKeyPress()
805805
[IgnoreBrowser(Browser.Chrome, "Not implemented")]
806806
public void CanClearNumberInputAfterTypingInvalidInput()
807807
{
808-
if (TestUtilities.IsIE10OrHigher(driver))
809-
{
810-
Assert.Ignore("IE 10 and higher do not validate invalid input until focus change");
811-
}
812-
813808
driver.Url = formsPage;
814809
IWebElement input = driver.FindElement(By.Id("age"));
815810
input.SendKeys("e");

0 commit comments

Comments
 (0)