コード例 #1
0
        public void CheckTheTransitionToTheSecondStageOfRegistration()
        {
            Random email  = new Random();
            int    _email = email.Next(100, 999);

            var registrationPage = new RegistrationPage(_webDriver);

            registrationPage.OpenPage()
            .SetFirstName("Will")
            .SetLastName("Smith")
            .SetEmail($"sosixo{_email}[email protected]")
            .SetMobile("4444444444")
            .SetPassword("@123Will@")
            .SetConfirmPassword("@123Will@")
            .ClickLoginButton();

            var result = _webDriver.Url;

            Assert.AreEqual("https://newbookmodels.com/join/company", result);
        }