Info
Version: | 1.0.0.11 |
Author(s): | Bruno N. Fernandes |
Last Update: | Sunday, November 6, 2022 |
.NET Fiddle: | Create the first Fiddle |
Project Url: | https://github.com/Mercado-Pleno/MPSC.PlenoSoft.WatiN.Extension |
NuGet Url: | https://www.nuget.org/packages/MPSC.PlenoSoft.WatiN.Extension |
Install
Install-Package MPSC.PlenoSoft.WatiN.Extension
dotnet add package MPSC.PlenoSoft.WatiN.Extension
paket add MPSC.PlenoSoft.WatiN.Extension
MPSC.PlenoSoft.WatiN.Extension Download (Unzip the "nupkg" after downloading)
Dependencies
- WatiN(>= 2.1.0)
Tags
using System;
using Microsoft.VisualStudio.TestTools.UnitTesting;
using MPSC.PlenoSoft.WatiN.Extension.Util;
using WatiN.Core;
namespace MPSC.PlenoSoft.WatiN.Extension.Testes.Unidade
{
[TestClass]
public class Testando_WatiN
{
[TestMethod]
public void Exemplo_De_Como_Automatizar_Pesquisa_No_Google()
{
var browser = WatiNExtension.ObterNavegador<IE>();
browser.GoTo("https://www.google.com/search?q=WatiN");
var html = browser.Html;
Assert.IsNotNull(html);
}
[TestMethod]
public void Exemplo_De_Como_Automatizar_Pesquisa_De_CEP_Nos_Correios()
{
var navegador = Navegador.New(TipoNavegador.InternetExplorer);
navegador.IrPara("http://www.buscacep.correios.com.br/servicos/dnec/menuAction.do?Metodo=menuCep", TimeSpan.FromSeconds(10), "CEP");
navegador.SetText("relaxation", "20090000", false);
navegador.ClickButton("Buscar", true, true);
var html = navegador.GetHtml();
navegador.Fechar();
Assert.IsNotNull(html);
}
}
}.