我想在我的测试文件中使用在 wdio.conf.js 文件中声明的全局变量。在下面的测试中,我使用的是用户名、密码、PageTile。我想通过 wdio.conf.js 文件全局使用它们?
describe('My Store|Automationpractice.com', () => {
it('should go to url and login with valid credentials', async () => {
await LoginPage.open();
await expect(browser).toHaveTitle('My Store');
await LoginPage.signInbtn.click();
await expect(browser).toHaveTitle('Login - My Store');
await LoginPage.login('UserName','Password');
await expect(browser).toHaveTitle('My account - My Store');
await browser.pause(5000);
});