From 64aeba030e74f5556250f41bb89e16c1227d6c7f Mon Sep 17 00:00:00 2001 From: thdk Date: Tue, 26 Jan 2021 20:51:23 +0100 Subject: [PATCH] fix casing in imports Fixes #50, Fixes #9 --- src/by2.ts | 4 ++-- src/index.ts | 6 +++--- src/pageobject.ts | 4 ++-- 3 files changed, 7 insertions(+), 7 deletions(-) diff --git a/src/by2.ts b/src/by2.ts index 232108c..1f153c4 100644 --- a/src/by2.ts +++ b/src/by2.ts @@ -6,8 +6,8 @@ 'use strict'; import { By, Locator, WebDriver, ISize, IRectangle, ILocation, until, IWebElementId, WebElement, WebElementPromise, ThenableWebDriver, FileDetector, Session, Actions, WebElementCondition, Condition, Options, Navigation, TargetLocator } from 'selenium-webdriver' -import { driver, WebDriver2 } from './driver' -import { Config } from './config' +import { driver, WebDriver2 } from './Driver' +import { Config } from './Config' interface IWebElement extends WebElement { diff --git a/src/index.ts b/src/index.ts index 03bc08a..ce0827a 100644 --- a/src/index.ts +++ b/src/index.ts @@ -6,7 +6,7 @@ 'use strict'; export { By2 } from './by2' -export { driver, WebDriver2 } from './driver' +export { driver, WebDriver2 } from './Driver' export { PageObject } from './pageobject' -export { windowsAppDriverCapabilities } from './winappdriver' -export { Config } from './config' +export { windowsAppDriverCapabilities } from './WinAppDriver' +export { Config } from './Config' diff --git a/src/pageobject.ts b/src/pageobject.ts index b8cf46c..617766d 100644 --- a/src/pageobject.ts +++ b/src/pageobject.ts @@ -5,8 +5,8 @@ 'use strict'; -import { driver, WebDriver2 } from "./driver"; -import { Config } from './config' +import { driver, WebDriver2 } from "./Driver"; +import { Config } from './Config' export class PageObject { private webDriver2_?: WebDriver2;