Skip to content

Commit

Permalink
Update examples
Browse files Browse the repository at this point in the history
  • Loading branch information
Erwan Dano authored and Erwan Dano committed Mar 28, 2024
1 parent e99ce13 commit 67c615c
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions selenium/banking/login-password.mjs
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import { Builder, By, Browser, until } from "selenium-webdriver";

const email = "erwan.dano@transmitsecurity.com";
const password = "mlkjmlkj";
const email = "my.address@mail.com";
const password = "secret";

async function example() {
let driver = await new Builder().forBrowser(Browser.CHROME).build();
Expand Down
4 changes: 2 additions & 2 deletions selenium/banking/transaction.mjs
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import { Builder, By, Browser, until } from "selenium-webdriver";

const email = "erwan.dano@transmitsecurity.com";
const password = "mlkjmlkj";
const email = "my.address@mail.com";
const password = "secret";

async function loginAction() {
let driver = await new Builder().forBrowser(Browser.CHROME).build();
Expand Down

0 comments on commit 67c615c

Please sign in to comment.