1
例をページオブジェクトで表示することができれば素晴らしいと思います。 コメント行は、jquery select2に置き換えられたselectタグの値を設定する必要があります。夜間のテストでselect2の値を設定するにはどうすればよいですか?
module.exports = {
'Profile step': (client) => {
const profile = client.page.profile();
profile.navigate()
.waitForElementVisible('@editProfileButton', 10000)
.click('@editProfileButton')
.waitForElementVisible('@location', 2000)
.setValue('@location', 'Germany')
//.setSelect2Value('@timezone', '445')
.setValue('@website', 'www.pypage.com')
.click('@saveProfileButton');
}
};