码迷,mamicode.com
首页 > 其他好文 > 详细

selenium 开始

时间:2014-07-22 23:00:53      阅读:368      评论:0      收藏:0      [点我收藏+]

标签:style   blog   http   java   color   使用   

一直忘记写selenium的开始学习的过程,今天趁五一,天气有雨,写下这文章

 

1.进入selnium官网,了解selenium1,2,grid的区别。下载c#相关的包(使用c#的人非常少)

mamicode.com,码迷

 

2.使用IED录制脚本,用C#导出,观察脚本的写法。当然需要在selenium官网下载IDE(firefox)

  2.1下载插件成功后会在firefox看到selenium IDE,点击

mamicode.com,码迷

 2.2使用IDE录制对www.google.com的搜索操作

mamicode.com,码迷

 2.3可以导出相应的c#  remote control 或webdriver脚本

mamicode.com,码迷

  2.3.1使用selenium 1 (Remote control)记得需要启动 rc server,脚本才能运行

原理图:

mamicode.com,码迷

主要代码:

mamicode.com,码迷
using System;
using System.Text;
using System.Text.RegularExpressions;
using System.Threading;
using NUnit.Framework;
using Selenium;

namespace SeleniumTests
{
[TestFixture]//测试类
public class re
{
private ISelenium selenium;
private StringBuilder verificationErrors;

[SetUp]//测试准备(数据,方法)
public void SetupTest()
{
selenium = new DefaultSelenium("localhost", 4444, "*chrome", "https://www.google.com.hk/");
selenium.Start();
verificationErrors = new StringBuilder();
}

[TearDown]//测试资源复位
public void TeardownTest()
{
try
{
selenium.Stop();
}
catch (Exception)
{
// Ignore errors if unable to close the browser
}
Assert.AreEqual("", verificationErrors.ToString());
}

[Test]//测试
public void TheReTest()
{
            selenium.Open("/");
            selenium.Type("id=lst-ib", "SELENIUM");
}
}
}
mamicode.com,码迷

 

   2.3.2 使用selenium 2(selenium 1+webdriver)

原理:利用浏览器native support来操作浏览器,因为firefox有浏览器原生组件webdriver.xpi,故不需要像IE,Chrome需要使用其他命令为浏览器native的调用

 

FirefoxDriver初始化成功之后,默认会从http://localhost:7055开始,而ChromeDriver则大概是http://localhost:46350

mamicode.com,码迷

    需要在vs references 引进相应的.dll(如果你建的solution为unitTest,需要应用nunit.framework.dll)

mamicode.com,码迷

主要代码:

mamicode.com,码迷
using System;
using System.Text;
using System.Text.RegularExpressions;
using System.Threading;
using NUnit.Framework;
using OpenQA.Selenium;
using OpenQA.Selenium.Firefox;
using OpenQA.Selenium.Support.UI;

namespace SeleniumTests
{
    [TestFixture]
    public class Wb
    {
        private IWebDriver driver;
        private StringBuilder verificationErrors;
        private string baseURL;
        private bool acceptNextAlert = true;
        
        [SetUp]
        public void SetupTest()
        {
            driver = new FirefoxDriver();
            baseURL = "https://www.google.com.hk/";
            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 TheWbTest()
        {
            driver.Navigate().GoToUrl(baseURL + "/");
            driver.FindElement(By.Id("lst-ib")).Clear();
            driver.FindElement(By.Id("lst-ib")).SendKeys("SELENIUM");
        }
        private bool IsElementPresent(By by)
        {
            try
            {
                driver.FindElement(by);
                return true;
            }
            catch (NoSuchElementException)
            {
                return false;
            }
        }
        
        private bool IsAlertPresent()
        {
            try
            {
                driver.SwitchTo().Alert();
                return true;
            }
            catch (NoAlertPresentException)
            {
                return false;
            }
        }
        
        private string CloseAlertAndGetItsText() {
            try {
                IAlert alert = driver.SwitchTo().Alert();
                string alertText = alert.Text;
                if (acceptNextAlert) {
                    alert.Accept();
                } else {
                    alert.Dismiss();
                }
                return alertText;
            } finally {
                acceptNextAlert = true;
            }
        }
    }
}
mamicode.com,码迷

 

可以说selenium自动化的基本脚本就完成了,可以run进行调试了,方法有:niunit/resharper

 

selenium 开始,码迷,mamicode.com

selenium 开始

标签:style   blog   http   java   color   使用   

原文地址:http://www.cnblogs.com/cloud-test/p/3702977.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!