2019-10-24 01:22:11 +00:00
|
|
|
|
using System;
|
|
|
|
|
using System.Text;
|
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
using System.Threading.Tasks;
|
|
|
|
|
using Microsoft.VisualStudio.TestTools.UnitTesting;
|
|
|
|
|
using Wabbajack.Lib.Downloaders;
|
|
|
|
|
using Wabbajack.Lib.WebAutomation;
|
|
|
|
|
using System.Windows.Threading;
|
|
|
|
|
|
|
|
|
|
namespace Wabbajack.Test
|
|
|
|
|
{
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Summary description for WebAutomationTests
|
|
|
|
|
/// </summary>
|
|
|
|
|
[TestClass]
|
|
|
|
|
public class WebAutomationTests
|
|
|
|
|
{
|
|
|
|
|
[TestMethod]
|
|
|
|
|
public async Task TestBasicNavigation()
|
|
|
|
|
{
|
|
|
|
|
using (var w = await Driver.Create())
|
|
|
|
|
{
|
|
|
|
|
await w.NavigateTo(new Uri("http://www.google.com"));
|
2019-10-25 03:07:47 +00:00
|
|
|
|
Assert.AreEqual("www.google.com", (await w.GetLocation()).Host);
|
2019-10-24 01:22:11 +00:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
[TestMethod]
|
|
|
|
|
public async Task TestAttrSelection()
|
|
|
|
|
{
|
|
|
|
|
using (var w = await Driver.Create())
|
|
|
|
|
{
|
|
|
|
|
await w.NavigateTo(new Uri("http://www.mediafire.com/file/agiqzm1xwebczpx/WABBAJACK_TEST_FILE.tx"));
|
|
|
|
|
Assert.IsTrue((await w.GetAttr("a.input", "href")).StartsWith("http://"));
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|