Skip to content

Commit 64aeba0

Browse files
committed
fix casing in imports
Fixes #50, Fixes #9
1 parent eed73e4 commit 64aeba0

File tree

3 files changed

+7
-7
lines changed

3 files changed

+7
-7
lines changed

src/by2.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,8 +6,8 @@
66
'use strict';
77

88
import { By, Locator, WebDriver, ISize, IRectangle, ILocation, until, IWebElementId, WebElement, WebElementPromise, ThenableWebDriver, FileDetector, Session, Actions, WebElementCondition, Condition, Options, Navigation, TargetLocator } from 'selenium-webdriver'
9-
import { driver, WebDriver2 } from './driver'
10-
import { Config } from './config'
9+
import { driver, WebDriver2 } from './Driver'
10+
import { Config } from './Config'
1111

1212
interface IWebElement extends WebElement {
1313

src/index.ts

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
'use strict';
77

88
export { By2 } from './by2'
9-
export { driver, WebDriver2 } from './driver'
9+
export { driver, WebDriver2 } from './Driver'
1010
export { PageObject } from './pageobject'
11-
export { windowsAppDriverCapabilities } from './winappdriver'
12-
export { Config } from './config'
11+
export { windowsAppDriverCapabilities } from './WinAppDriver'
12+
export { Config } from './Config'

src/pageobject.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,8 +5,8 @@
55

66
'use strict';
77

8-
import { driver, WebDriver2 } from "./driver";
9-
import { Config } from './config'
8+
import { driver, WebDriver2 } from "./Driver";
9+
import { Config } from './Config'
1010

1111
export class PageObject {
1212
private webDriver2_?: WebDriver2;

0 commit comments

Comments
 (0)