Skip to content

Commit aea2eb6

Browse files
committed
Fixing issues with IPv6
1 parent 99e39d8 commit aea2eb6

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed

components/assistive-playwright-test-sample/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717
"sirv-cli": "2.0.2"
1818
},
1919
"scripts": {
20-
"start": "sirv -H 0.0.0.0 public"
20+
"start": "sirv -H :: public"
2121
},
2222
"license": "MIT"
2323
}

components/assistive-webdriver/samples/ariatemplates.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ const {
1212
"awd:vm-config": "jaws"
1313
})
1414
.forBrowser(Browser.INTERNET_EXPLORER)
15-
.usingServer("http://localhost:3000/")
15+
.usingServer("http://127.0.0.1:3000/")
1616
.build();
1717
try {
1818
addScreenReaderTextListener(driver, message =>

components/assistive-webdriver/samples/googleSearch.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ const { Builder, By, Key, Browser, until } = require("selenium-webdriver");
55
(async function () {
66
const driver = await new Builder()
77
.forBrowser(Browser.CHROME)
8-
.usingServer("http://localhost:3000/")
8+
.usingServer("http://127.0.0.1:3000/")
99
.build();
1010
try {
1111
await driver.get("https://www.google.com");

components/assistive-webdriver/src/tester/bin.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ import { sigintWin32 } from "../server/sigintWin32";
3838
server: {
3939
type: "string",
4040
alias: "s",
41-
default: "http://localhost:3000"
41+
default: "http://127.0.0.1:3000"
4242
},
4343
browser: {
4444
type: "string",

0 commit comments

Comments
 (0)