You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I installed the new build from 2/3/14, re-installed the ProtoTest references from NuGet and re-built the soln. The test class I am using is as follows:
using System;
using System.Collections.Generic;
using System.Linq;
using System.Security.Cryptography.X509Certificates;
using System.Text;
using System.Threading.Tasks;
using OpenQA.Selenium;
using ProtoTest.Golem.WebDriver;
using MbUnit.Framework;
using ProtoTest.Golem.Tests.PageObjects.Google;
The app config file I am using for testing is as follows:
The error I am seeing when I run the [Test] is as follows:
Test 'MikeGolemTesting/ESPNTests/ESPNTests: browser={Chrome}, host="localhost"' failed:
Set Up
System.Exception: Error caught starting BMP Proxy Server : Could not find a part of the path 'C:\Users\MIKE\Documents\GitHub\MikeGolemTestingSuite\MikeGolemTesting\MikeGolemTesting\bin\Debug\Proxy\browsermob-proxy-2.0-beta-8-bin.zip'.
HResult: -2146233088
at ProtoTest.Golem.Core.TestBase.StartProxyServer()
at ProtoTest.Golem.Core.TestBase.SuiteSetUp()
I navigated to the directory mentioned in the error above and I do not have a "Proxy" directory at that location. I did see this directory in the ProtoTest.Golem directory where my GitHub instance sync's to, however.
Steps to Reproduce:
Create a test class from the code above
Create an app config file from the code above
Run test/Observe error
_NOTE_ I commented out the "StartProxy" and the "UseProxy" key from the app config and ran the test without error.
The text was updated successfully, but these errors were encountered:
I installed the new build from 2/3/14, re-installed the ProtoTest references from NuGet and re-built the soln. The test class I am using is as follows:
using System;
using System.Collections.Generic;
using System.Linq;
using System.Security.Cryptography.X509Certificates;
using System.Text;
using System.Threading.Tasks;
using OpenQA.Selenium;
using ProtoTest.Golem.WebDriver;
using MbUnit.Framework;
using ProtoTest.Golem.Tests.PageObjects.Google;
namespace MikeGolemTesting
{
public class ESPNTests : WebDriverTestBase
{
[Test]
public void TestEspn()
{
OpenPage("http://www.google.com/").SearchFor("Selenium");
}
}
}
The app config file I am using for testing is as follows:
The error I am seeing when I run the [Test] is as follows:
Test 'MikeGolemTesting/ESPNTests/ESPNTests: browser={Chrome}, host="localhost"' failed:
Set Up
System.Exception: Error caught starting BMP Proxy Server : Could not find a part of the path 'C:\Users\MIKE\Documents\GitHub\MikeGolemTestingSuite\MikeGolemTesting\MikeGolemTesting\bin\Debug\Proxy\browsermob-proxy-2.0-beta-8-bin.zip'.
HResult: -2146233088
at ProtoTest.Golem.Core.TestBase.StartProxyServer()
at ProtoTest.Golem.Core.TestBase.SuiteSetUp()
I navigated to the directory mentioned in the error above and I do not have a "Proxy" directory at that location. I did see this directory in the ProtoTest.Golem directory where my GitHub instance sync's to, however.
Steps to Reproduce:
_NOTE_ I commented out the "StartProxy" and the "UseProxy" key from the app config and ran the test without error.
The text was updated successfully, but these errors were encountered: