Skip to content

Commit

Permalink
asd
Browse files Browse the repository at this point in the history
  • Loading branch information
chiaryan committed Nov 12, 2024
1 parent 8f9d98a commit e3a384e
Showing 1 changed file with 1 addition and 4 deletions.
5 changes: 1 addition & 4 deletions apps/frontend/__tests__/browser-tests/browser.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -42,12 +42,9 @@ describe.each([Browser.CHROME, Browser.EDGE, Browser.FIREFOX])("%s driver test",

describe("webdriver installed correctly", () => {
it("does google search", async () => {
console.log("getting url");
await driver.get('http://www.google.com');
console.log("got url");
await driver.findElement(By.name('q')).sendKeys('webdriver', Key.RETURN);
await driver.wait(until.titleIs('webdriver - Google Search'), 1000);
console.log("did search");
}, 10000);

it.skip("does another google search", async () => {
Expand Down Expand Up @@ -78,7 +75,7 @@ describe.each([Browser.CHROME, Browser.EDGE, Browser.FIREFOX])("%s driver test",
expect(slogan2).toBe("peers");
}, 10000);
})
})
}, 20000)



Expand Down

0 comments on commit e3a384e

Please sign in to comment.