Projekt

Obecné

Profil

Stáhnout (582 Bajtů) Statistiky
| Větev: | Tag: | Revize:
1
using System.Linq;
2
using System.Text;
3
using Microsoft.VisualStudio.TestTools.UnitTesting;
4
using OpenQA.Selenium;
5
using OpenQA.Selenium.Chrome;
6
using OpenQA.Selenium.Firefox;
7

    
8
using System;
9
using System.Collections;
10
using System.Collections.Generic;
11
using System.Threading;
12

    
13
namespace FrontendTesting
14
{
15
    public class Utils
16
    {
17
        
18
    }
19

    
20
    public static class Drivers
21
    {
22
        public static IWebDriver[] drivers = { new FirefoxDriver(), new ChromeDriver() };
23
        public static IWebDriver[] GetDrivers()
24
        {
25
            return drivers;
26
        }
27
    }
28
}
(4-4/4)