Skip to content

Commit 3e63b09

Browse files
Increase project version number to 1.12.0
1 parent d34ae84 commit 3e63b09

File tree

2 files changed

+28
-27
lines changed

2 files changed

+28
-27
lines changed

README.md

+25-25
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ It uses fluent page object pattern.
1414

1515
Supports .NET Framework 4.0+ and .NET Core/Standard 2.0+.
1616

17-
**[What's new in v1.11.0](https://atata.io/blog/2021/06/02/atata-1.11.0-released/)**
17+
**[What's new in v1.12.0](https://atata.io/blog/2021/09/01/atata-1.12.0-released/)**
1818

1919
## Features
2020

@@ -65,10 +65,10 @@ Usage in the test method:
6565
[Test]
6666
public void SignIn()
6767
{
68-
Go.To<SignInPage>().
69-
Email.Set("admin@mail.com").
70-
Password.Set("abc123").
71-
SignIn.Click();
68+
Go.To<SignInPage>()
69+
.Email.Set("admin@mail.com")
70+
.Password.Set("abc123")
71+
.SignIn.Click();
7272
}
7373
```
7474

@@ -78,10 +78,10 @@ public void SignIn()
7878
[SetUp]
7979
public void SetUp()
8080
{
81-
AtataContext.Configure().
82-
UseChrome().
83-
UseBaseUrl("https://demo.atata.io/").
84-
Build();
81+
AtataContext.Configure()
82+
.UseChrome()
83+
.UseBaseUrl("https://demo.atata.io/")
84+
.Build();
8585
}
8686
```
8787

@@ -101,22 +101,22 @@ public void User_Create()
101101
Office office = Office.NewYork;
102102
Gender gender = Gender.Male;
103103

104-
Login().
105-
New().
106-
ModalTitle.Should.Equal("New User").
107-
General.FirstName.SetRandom(out firstName).
108-
General.LastName.SetRandom(out lastName).
109-
General.Email.SetRandom(out email).
110-
General.Office.Set(office).
111-
General.Gender.Set(gender).
112-
Save().
113-
Users.Rows[x => x.FirstName == firstName && x.LastName == lastName && x.Email == email && x.Office == office].View().
114-
Header.Should.Equal($"{firstName} {lastName}").
115-
Email.Should.Equal(email).
116-
Office.Should.Equal(office).
117-
Gender.Should.Equal(gender).
118-
Birthday.Should.Not.Exist().
119-
Notes.Should.Not.Exist();
104+
Login()
105+
.New()
106+
.ModalTitle.Should.Equal("New User")
107+
.General.FirstName.SetRandom(out firstName)
108+
.General.LastName.SetRandom(out lastName)
109+
.General.Email.SetRandom(out email)
110+
.General.Office.Set(office)
111+
.General.Gender.Set(gender)
112+
.Save()
113+
.Users.Rows[x => x.FirstName == firstName && x.LastName == lastName && x.Email == email && x.Office == office].View()
114+
.Header.Should.Equal($"{firstName} {lastName}")
115+
.Email.Should.Equal(email)
116+
.Office.Should.Equal(office)
117+
.Gender.Should.Equal(gender)
118+
.Birthday.Should.Not.Exist()
119+
.Notes.Should.Not.Exist();
120120
}
121121
```
122122

src/Atata/Atata.csproj

+3-2
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
<PropertyGroup>
44
<RootNamespace>Atata</RootNamespace>
5-
<Version>1.11.2</Version>
5+
<Version>1.12.0</Version>
66
<Description>C#/.NET web UI test automation full featured framework based on Selenium WebDriver.
77

88
Supports .NET Framework 4.0+ and .NET Core/Standard 2.0+.
@@ -23,7 +23,8 @@ Features:
2323
<RepositoryUrl>https://github.com/atata-framework/atata</RepositoryUrl>
2424
<PackageId>Atata</PackageId>
2525
<PackageTags>atata automation testing test selenium webdriver browser</PackageTags>
26-
<PackageReleaseNotes>1.11.2 - https://atata.io/blog/2021/06/09/atata-1.11.2-released/
26+
<PackageReleaseNotes>1.12.0 - https://atata.io/blog/2021/09/01/atata-1.12.0-released/
27+
1.11.2 - https://atata.io/blog/2021/06/09/atata-1.11.2-released/
2728
1.11.1 - https://atata.io/blog/2021/06/07/atata-1.11.1-released/
2829
1.11.0 - https://atata.io/blog/2021/06/02/atata-1.11.0-released/
2930
1.10.0 - https://atata.io/blog/2021/02/18/atata-1.10.0-released/</PackageReleaseNotes>

0 commit comments

Comments
 (0)