1

자동화 프레임 워크에 대한 테스트 집합을 작성 중이지만 작성한 로컬 HTML 페이지로 이동하는 데 문제가 있습니다.파일 경로를 사용하여 ChromeDriver로 로컬 파일을 탐색하는 방법은 무엇입니까?

여기서 내가 ChromeDriver 인스턴스를 생성합니다. 내 테스트뿐만 아니라 추상적으로 테스트 도구에 Protractor-net를 사용할 수 있어요 있도록

if (AllowFileAccessAcrossFiles) 
{ 
    ChromeOptions options = new ChromeOptions(); 
    // Have tried, none, individually, as well as both. 
    options.AddArgument("--allow-file-access-from-files"); 
    options.AddArgument("--enable-local-file-accesses "); 
    driver = new ChromeDriver(options); 
} 

ChromeDriver 예를

나중에 NgWebDriver 클래스로 전달됩니다.

internal TestWebDriver(RemoteWebDriver driver, TestConfiguration configuration) 
{ 
    // ... 

    _driver = new NgWebDriver(driver); 

    // ... 
} 

프레임 워크는 올바른 파일 경로 ("파일 : /// ...") 전달하는 페이지로 이동합니다 드라이버를 호출 할 때,하지만 결코 브라우저 URL로하지 않으며 아니다 로 이동했습니다. (즉, URL은 data;입니다.)

파일 경로가 ChromeDriver 인 로컬 HTML 페이지로 이동하려면 어떻게해야합니까?

답변

2

이 문제에 대한이 해결책은 NgWebDriver에 뿌리를두고 있습니다. NgWebDriver는 URL로 이동 IE, 에지, PhantomJS, 파이어 폭스, 사파리 용 드라이버를 연기하지만, 다른 어떤 경우 그것은 단지이 실행됩니다 this.ExecuteScript("window.name += '" + AngularDeferBootstrap + "'; window.location.href = '" + value + "';");

바로 처리하지 않습니다 호출되는 JavaScript method을 로컬 경로를 지나가려면 탐색 할 http 문자열이 필요합니다. 따라서 로컬 경로를 전달할 수 있는지 여부는 Url 속성에 대한 set 메서드의 특정 드라이버 구현에 따라 결정됩니다.

다음은 관련 Protractor-net 속성입니다. Navigate().GoToUrl()으로 탐색 할 때

public class NgWebDriver : IWebDriver, IWrapsDriver, IJavaScriptExecutor 
{ 
    private const string AngularDeferBootstrap = "NG_DEFER_BOOTSTRAP!"; 

    private IWebDriver driver; 
    private IJavaScriptExecutor jsExecutor; 
    private string rootElement; 
    private IList<NgModule> mockModules; 

    // constructors and stuff 

    /// <summary> 
    /// Gets or sets the URL the browser is currently displaying. 
    /// </summary> 
    public string Url 
    { 
     get 
     { 
      this.WaitForAngular(); 
      return this.driver.Url; 
     } 
     set 
     { 
      // Reset URL 
      this.driver.Url = "about:blank"; 

      // TODO: test Android 
      IHasCapabilities hcDriver = this.driver as IHasCapabilities; 
      if (hcDriver != null && 
       (hcDriver.Capabilities.BrowserName == "internet explorer" || 
       hcDriver.Capabilities.BrowserName == "MicrosoftEdge" || 
       hcDriver.Capabilities.BrowserName == "phantomjs" || 
       hcDriver.Capabilities.BrowserName == "firefox" || 
       hcDriver.Capabilities.BrowserName.ToLower() == "safari")) 
      { 
       this.ExecuteScript("window.name += '" + AngularDeferBootstrap + "';"); 
       this.driver.Url = value; 
      } 
      else 
      { 
       this.ExecuteScript("window.name += '" + AngularDeferBootstrap + "'; window.location.href = '" + value + "';"); 
      } 

      if (!this.IgnoreSynchronization) 
      { 
       try 
       { 
        // Make sure the page is an Angular page. 
        long? angularVersion = this.ExecuteAsyncScript(ClientSideScripts.TestForAngular) as long?; 
        if (angularVersion.HasValue) 
        { 
         if (angularVersion.Value == 1) 
         { 
          // At this point, Angular will pause for us, until angular.resumeBootstrap is called. 

          // Add default module for Angular v1 
          this.mockModules.Add(new Ng1BaseModule()); 

          // Register extra modules 
          foreach (NgModule ngModule in this.mockModules) 
          { 
           this.ExecuteScript(ngModule.Script); 
          } 
          // Resume Angular bootstrap 
          this.ExecuteScript(ClientSideScripts.ResumeAngularBootstrap, 
           String.Join(",", this.mockModules.Select(m => m.Name).ToArray())); 
         } 
         else if (angularVersion.Value == 2) 
         { 
          if (this.mockModules.Count > 0) 
          { 
           throw new NotSupportedException("Mock modules are not supported in Angular 2"); 
          } 
         } 
        } 
       } 
       catch (WebDriverTimeoutException wdte) 
       { 
        throw new InvalidOperationException(
         String.Format("Angular could not be found on the page '{0}'", value), wdte); 
       } 
      } 
     } 
    } 

이 속성은 응용 프로그램이 각도를 사용하는 것으로 가정하기 때문에

, 당신은 응용 프로그램이 bool를 통해 각도 사용하고 있는지 여부를 다시 포함해야합니다. 우리의 경우

, 우리는 각도 사용하고 GoToUrl() 방법에 INavigation를 통해 랩 IWebDriver에 직접 호출하는 통과되지 않았다. 이 래핑 된 드라이버는 로컬 파일을 올바르게 처리합니다.

다음은 각도기 그물에 navigation class입니다 :

public class NgNavigation : INavigation 
{ 
    private NgWebDriver ngDriver; 
    private INavigation navigation; 

    // irrelevant constructors and such 

    /// <summary> 
    /// Load a new web page in the current browser window. 
    /// </summary> 
    /// <param name="url">The URL to load. It is best to use a fully qualified URL</param> 
    /// <param name="ensureAngularApp">Ensure the page is an Angular page by throwing an exception.</param> 
    public void GoToUrl(string url, bool ensureAngularApp) 
    { 
     if (ensureAngularApp) 
     { 
      this.ngDriver.Url = url; 
     } 
     else 
     { 
      this.navigation.GoToUrl(url); 
     } 
    } 
+0

좋은 발견. 항상 다른 웹 드라이브 위에 놓인 NgWebDriver의 복잡함을 탐색하는 즐거움 ... –