diff --git a/test/commandtests/actionTest.js b/test/commandtests/actionTest.js index fbe9a31b50..85df045ea2 100644 --- a/test/commandtests/actionTest.js +++ b/test/commandtests/actionTest.js @@ -35,6 +35,6 @@ serial('Run through the action API', async t => { }); t.deepEqual( result[0].browserScripts[0].scripts.uri, - 'https://selenium.dev/selenium/web/mouse_interaction.html' + 'http://127.0.0.1:3000/simple/' ); }); diff --git a/test/data/commandscripts/actions.cjs b/test/data/commandscripts/actions.cjs index 5c5efc62af..a87e1ff484 100644 --- a/test/data/commandscripts/actions.cjs +++ b/test/data/commandscripts/actions.cjs @@ -1,6 +1,5 @@ module.exports = async function (context, commands) { - - await commands.measure.start('https://selenium.dev/selenium/web/mouse_interaction.html'); + await commands.measure.start('http://127.0.0.1:3000/simple/'); const clickable = await commands.element.getById('clickable'); return commands.action.getActions() .move({ origin: clickable }) diff --git a/test/data/html/simple/index.html b/test/data/html/simple/index.html index 8eab404fb1..6713ddcba5 100644 --- a/test/data/html/simple/index.html +++ b/test/data/html/simple/index.html @@ -6,5 +6,7 @@

Welcome to the super simple and fast test page

It will be hard to create a faster page than this page.

Dimple

+ + \ No newline at end of file