Skip to content

Commit

Permalink
[javascript] Fix the syntax error preventing a test suite from running (
Browse files Browse the repository at this point in the history
SeleniumHQ#8371)

Co-authored-by: David Burns <david.burns@theautomatedtester.co.uk>
Co-authored-by: Diego Molina <diemol@users.noreply.github.com>
  • Loading branch information
3 people authored and titusfortner committed Aug 13, 2020
1 parent 7d17fa8 commit d522438
Showing 1 changed file with 1 addition and 1 deletion.
Expand Up @@ -411,7 +411,7 @@ suite(function(env) {
});
});

describe('RelativeBy to find element', async function() {
describe('RelativeBy to find element', function() {
it('finds an element above', async function() {
await driver.get(Pages.relativeLocators);
let below = await driver.findElement(By.id("below"));
Expand Down

0 comments on commit d522438

Please sign in to comment.