In addition to Weibo, there is also WeChat
Please pay attention
WeChat public account
Shulou
2025-04-06 Update From: SLTechnology News&Howtos shulou NAV: SLTechnology News&Howtos > Internet Technology >
Share
Shulou(Shulou.com)06/03 Report--
Namespace SeleniumTests {[TestFixture] public class Login {private IWebDriver driver; private StringBuilder verificationErrors; private string baseURL; private bool acceptNextAlert = true; [SetUp] public void SetupTest () {driver = new FirefoxDriver (); baseURL = "URL"; verificationErrors = new StringBuilder () } [TearDown] public void TeardownTest () {try {driver.Quit ();} catch (Exception) {/ / Ignore errors if unable to close the browser} Assert.AreEqual ("", verificationErrors.ToString ()) } [Test] public void TheLoginTest () {driver.Navigate () .GoToUrl (baseURL + "/ login"); driver.FindElement (By.Name ("username")) .Clear (); driver.FindElement (By.Name ("username")) .SendKeys ("USERNAME"); driver.FindElement (By.Name ("password")) .Clear () Driver.FindElement (By.Name ("password"). SendKeys ("PASSWORD"); driver.FindElement (By.XPath ("/ / button [@ type='submit']"). Click ();}
The above is the login operation code for a page recorded with selenium ide. For example, the code for entering a user name and password is a bit repetitive and cumbersome, so you can encapsulate a method called SendKeys (including the actions of clear and sendkeys) without having to find the element every time, first clear, and then repeat to find the element and then sendkeys. Common operations like this can be encapsulated in a Common class (Common project) and some operations case in another project. The following is the encapsulation operation of the above example.
Namespace TestSelenium.Test {[TestFixture] class Test {TestSelenium.Common.Common Testcorde = new Common.Common (); [SetUp] public void Setup () {Testcorde.SetupTest ();} [TearDown] public void TearDown () {Testcorde.TeardownTest () } [Test] public void Test01 () {Testcorde.TheLoginTest ("URL", "USERNAME", "PASSWORD");}
The above Test01 is the case,TheLoginTest of the login operation (string baseurl, string username, string password) is the method of the whole login operation. Things like SetupTest, TeardownTest, SendKeys, Click, and TheLoginTest are all placed under the Common class below.
Namespace TestSelenium.Common {public class Common {public IWebDriver driver; public void SetupTest () {driver = new InternetExplorerDriver (@ "C:/AUTO"); driver.Manage () .Window.Maximize ();} public void TeardownTest () {driver.Quit () } public void SendKeys (By by, string Message) {driver.FindElement (by) .Clear (); driver.FindElement (by) .SendKeys (Message);} public void Click (By by) {driver.FindElement (by) .Click () } public void TheLoginTest (string baseurl, string username, string password) {driver.Navigate (). GoToUrl (baseurl + "/ login"); SendKeys (By.Name ("username"), username); SendKeys (By.Name ("password"), password); Click (By.XPath ("/ / button [@ type='submit']"));}
The ps.Common project is a class library output type, and the case project needs to reference the Common project and keep it all ANYCPU builds.
Welcome to subscribe "Shulou Technology Information " to get latest news, interesting things and hot topics in the IT industry, and controls the hottest and latest Internet news, technology news and IT industry trends.
Views: 0
*The comments in the above article only represent the author's personal views and do not represent the views and positions of this website. If you have more insights, please feel free to contribute and share.
Continue with the installation of the previous hadoop.First, install zookooper1. Decompress zookoope
"Every 5-10 years, there's a rare product, a really special, very unusual product that's the most un
© 2024 shulou.com SLNews company. All rights reserved.