Correct spelling mistakes

This commit is contained in:
Edward Betts
2019-01-23 13:19:53 +00:00
parent 977ab6c7b0
commit f95b686330
2 changed files with 3 additions and 3 deletions

View File

@@ -68,7 +68,7 @@ Watching ext changes:
npm run watch --prefix ./ext npm run watch --prefix ./ext
```` ````
Launch Firefox and auto-reload on rebuild (run in seperate terminal): Launch Firefox and auto-reload on rebuild (run in separate terminal):
````sh ````sh
npm run start --prefix ./ext npm run start --prefix ./ext

View File

@@ -161,8 +161,8 @@ async function injectSpecs (driver) {
.setChromeOptions(chromeOptions) .setChromeOptions(chromeOptions)
.build(); .build();
const capabilties = await driver.getCapabilities(); const capabilities = await driver.getCapabilities();
const browserName = capabilties.get("browserName"); const browserName = capabilities.get("browserName");
// Need to wait for cast extension on Chrome // Need to wait for cast extension on Chrome
if (browserName === "chrome") { if (browserName === "chrome") {