Skip to content

Commit 1666512

Browse files
committed
lowercase filename
bump version
1 parent fac8ee6 commit 1666512

File tree

6 files changed

+12
-12
lines changed

6 files changed

+12
-12
lines changed

example/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@
1818
"@types/selenium-webdriver": "^4.0.1",
1919
"babel-jest": "^24.8.0",
2020
"jest": "^24.8.0",
21-
"selenium-appium": "^0.0.13",
21+
"selenium-appium": "^0.0.14",
2222
"selenium-webdriver": "^4.0.0-alpha.4",
2323
"typescript": "^3.5.3",
2424
"appium": "1.14.2",

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "selenium-appium",
3-
"version": "0.0.13",
3+
"version": "0.0.14",
44
"description": "A selenium-webdriver extension to support native app testing by Mobile JSON Wire Protocol which appium supports, also provides easy wait for element for pages or navigation among pages, and supports PageObject pattern",
55
"main": "dist/index.js",
66
"types": "dist/index.d.ts",

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: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -5,8 +5,8 @@
55

66
'use strict';
77

8-
export { By2 } from './By2'
9-
export { driver, WebDriver2 } from './Driver'
10-
export { PageObject } from './PageObject'
11-
export { windowsAppDriverCapabilities } from './WinAppDriver'
12-
export { Config } from './Config'
8+
export { By2 } from './by2'
9+
export { driver, WebDriver2 } from './driver'
10+
export { PageObject } from './pageobject'
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;

tsconfig.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
"strict": true,
66
"declaration": true,
77
"sourceMap": true,
8-
"outDir": "./dist",
8+
"outDir": "./dist"
99
},
1010
"include": [
1111
"src"

0 commit comments

Comments
 (0)