Skip to content

Commit

Permalink
fix casing in imports
Browse files Browse the repository at this point in the history
  • Loading branch information
thdk committed Jan 26, 2021
1 parent eed73e4 commit 64aeba0
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 7 deletions.
4 changes: 2 additions & 2 deletions src/by2.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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 {

Expand Down
6 changes: 3 additions & 3 deletions src/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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'
4 changes: 2 additions & 2 deletions src/pageobject.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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;
Expand Down

0 comments on commit 64aeba0

Please sign in to comment.