
[Jest + POM] ์ ์ง๋ณด์์ฑ๊ณผ ํ์ฅ์ฑ์ ๊ณ ๋ คํ ํ
์คํธ ๋ฆฌํฉํ ๋ง
ยท
๐ Quality Assurance Study/๐ QA ๊ณต๋ถ
๐ ํ์ฌ ๋๋ ํ ๋ฆฌ ๊ตฌ์กฐVSCode/ โโโ JavaScript_Prac/ โ โโโ LoginPage.js โ โโโ LoginPage.test.js โโโ package.json โฌ๏ธ LoginPage.js๋๋ณด๊ธฐconst { By } = require('selenium-webdriver');class LoginPage { constructor(driver) { this.driver = driver; this.emailInput = By.id("email"); this.pwdInput = By.id("password"); }; async getElement(el) { return await this.driver.findElement(el); } asy..