我在您的网站上使用了以下代码,并从我的帐户中提供了APIKEY
。网址已启动,浏览器大小也已设置。当第一个checkWindow()
函数执行时,我得到一个401 Unauthorized异常。
using System;
using System.Drawing;
using OpenQA.Selenium;
using OpenQA.Selenium.Firefox;
using Applitools;
namespace MyTests
{
public class TestApplitoolsWebsite
{
public static void Main(string[] args)
{
IWebDriver driver = new FirefoxDriver();
// This is your api key, make sure you use it in all your tests.
var eyes = new Eyes();
eyes.ApiKey = "YOUR_API_KEY";
try
{
// Start visual testing with browser viewport set to 1024x768.
// Make sure to use the returned driver from this point on.
driver = eyes.Open(driver, "Applitools", "Test Web Page", new Size(1024, 768));
driver.Navigate().GoToUrl("http://www.applitools.com");
// Visual validation point #1
eyes.CheckWindow("Main Page");
driver.FindElement(By.CssSelector(".features>a")).Click();
// Visual validation point #2
eyes.CheckWindow("Features Page");
// End visual testing. Validate visual correctness.
eyes.Close();
}
finally
{
eyes.AbortIfNotClosed();
driver.Quit();
}
}
}
}
Applitools API的主要目的是它将采用屏幕截图,它将与我本地的基线屏幕截图进行比较。但是在这个checkWindow()
函数中,我得到了例外。
答案 0 :(得分:2)
401 Unauthorized的原因可能是: 1)错误的API密钥。 2)没有设置服务器(用于私有云/在场)。
你有专用云吗?如果没有,请检查以确保您的API密钥正确无误。
如果是,但仍然无法正常工作,请通过support@applitools.com与Applitools团队联系,他们将很乐意为您提供帮助。