index : btroops | |
Virtual board game-aid for BattleTroops, an infantry combat simulator wargame published by FASA in 1989. |
aboutsummaryrefslogtreecommitdiff |
diff options
author | Catalin Mititiuc <webdevcat@proton.me> | 2024-04-25 17:21:46 -0700 |
---|---|---|
committer | Catalin Mititiuc <webdevcat@proton.me> | 2024-04-25 17:21:46 -0700 |
commit | 1833dfebf19cf4478a74d907b52c9e569879646f (patch) | |
tree | 0b65d1a9019b3bd9ba3b2ffc34898a1dce77f857 /test | |
parent | 7f0c19becd5979a16d9298cae9f6ff8a6f96d9c2 (diff) |
WIP: firing arcs algo
Diffstat (limited to 'test')
-rw-r--r-- | test/integration/page.test.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/integration/page.test.js b/test/integration/page.test.js index 452d542..003f9db 100644 --- a/test/integration/page.test.js +++ b/test/integration/page.test.js @@ -19,7 +19,7 @@ it('loads the page', async () => { it('selects a trooper by clicking on their counter', async () => { await driver.switchTo().frame(driver.findElement(By.css('object'))); - const selector = 'use.counter[data-allegiance="liao"][data-number="1"]', + const selector = '.counter[data-allegiance="liao"][data-number="1"]', svg = await driver.findElement(By.css('svg')), counter = await driver.findElement(By.css(selector), svg); |