嘿,伙计们,我的功能测试需要帮助,我希望能够在 findCssSeclector 中使用变量。我使用了一个名为 Persona 的数组,它应该读出放入变量中的国家代码,而不是 intern 函数中的国家代码。但它不起作用,有人有想法吗?
这工作正常:
.type(persona["firstName"])
这不是
.findByCssSelector('select#billingAddress\\.country > option:nth-child(countrycode)')
感谢帮助。
define([
'intern!object',
'intern/chai!assert',
'require',
'intern',
'tests/support/personas',
'intern/dojo/node!fs'
], function (RegistrationPage, assert, require, intern, personas, fs) {
var heute = new Date();
var RegistrationPage;
RegistrationPage = {
DE: function (session, csv) {
var persona = personas[csv]
var countrycode = (persona["Country"]);
this.timeout = 500000;
return session
//Adress Page
//Firstname
.setFindTimeout(500000)
.findByCssSelector('input[id="billingAddress.firstName"]')
.click()
.type(persona["firstName"])
.end()
//Lastname
.findByCssSelector('input[id="billingAddress.lastName"]')
.click()
.type(persona["lastName"])
.end()
//Country
.findByCssSelector('select#billingAddress\\.country > option:nth-child(countrycode)')
.click()
.end()
//1.Country 2.DT 3.AT 4.CH 5.NL 6.DK 7.SE 8.LU 9.BE
//Streetname
.findByCssSelector('input[id="billingAddress.street"]')
.click()
.type(persona["streetName"])
.end()
//streeNumber
.findByCssSelector('input[id="billingAddress.streetNumber"]')
.click()
.type(persona["streetNumber"])
.end()
//Postcode
.findByCssSelector('input[id="billingAddress.zip"]')
.click()
.type(persona["PostalCode"])
.end()
//City
.findByCssSelector('input[id="billingAddress.city"]')
.click()
.type(persona["city"])
.end()
//Birthday
//0-31 Days
.findByCssSelector('select#customer\\.profile\\.dateOfBirth_day > option:nth-child(3)')
.click()
.end()
//0-12 Months
.findByCssSelector('select#customer\\.profile\\.dateOfBirth_month > option:nth-child(3)')
.click()
.end()
//0-82 Years
.findByCssSelector('select#customer\\.profile\\.dateOfBirth_year > option:nth-child(3)')
.click()
.sleep()
.end()
//Registration
.findByCssSelector('input[id="email"]')
.click()
.type('clark' + Math.floor(Math.random()*10000000000)+'@testing.qa')
.end()
.findByCssSelector('input[id="password"]')
.click()
.type('qasecret')
.end()
.findByCssSelector('input[id="password2"]')
.click()
.type('qasecret')
.end()
.findByCssSelector('span.glyphicon.glyphicon-chevron-down')
.click()
.end()
.findByCssSelector('input[id="voucherCode"]')
.click()
.type('SALES')
.end()
.takeScreenshot()
.then(function(data) {
fs.writeFileSync("/tmp/Screenshot/Registration_" + heute + ".png", data, 'base64');
})
//Submit
.findByCssSelector('#order_form_section input[type=submit]')
.click()
.sleep(5000)
.end()
}
};
return RegistrationPage;
});
解决方案
.findByCssSelector('select#billingAddress\\.country > option:nth-child(' + countrycode + ')')
代码示例:
define([
'intern!object',
'intern/chai!assert',
'require',
'intern',
'tests/support/personas',
'intern/dojo/node!fs'
], function (RegistrationPage, assert, require, intern, personas, fs) {
var heute = new Date();
var RegistrationPage;
RegistrationPage = {
DE: function (session, csv) {
var persona = personas[csv]
var countrycode = (persona["Country"]);
this.timeout = 500000;
return session
//Adress Page
//Firstname
.setFindTimeout(500000)
.findByCssSelector('input[id="billingAddress.firstName"]')
.click()
.type(persona["firstName"])
.end()
//Lastname
.findByCssSelector('input[id="billingAddress.lastName"]')
.click()
.type(persona["lastName"])
.end()
//Country
.findByCssSelector('select#billingAddress\\.country > option:nth-child(' + countrycode + ')')
.click()
.end()
//1.Country 2.DT 3.AT 4.CH 5.NL 6.DK 7.SE 8.LU 9.BE
//Streetname
.findByCssSelector('input[id="billingAddress.street"]')
.click()
.type(persona["streetName"])
.end()
//streeNumber
.findByCssSelector('input[id="billingAddress.streetNumber"]')
.click()
.type(persona["streetNumber"])
.end()
//Postcode
.findByCssSelector('input[id="billingAddress.zip"]')
.click()
.type(persona["PostalCode"])
.end()
//City
.findByCssSelector('input[id="billingAddress.city"]')
.click()
.type(persona["city"])
.end()
//Birthday
//0-31 Days
.findByCssSelector('select#customer\\.profile\\.dateOfBirth_day > option:nth-child(3)')
.click()
.end()
//0-12 Months
.findByCssSelector('select#customer\\.profile\\.dateOfBirth_month > option:nth-child(3)')
.click()
.end()
//0-82 Years
.findByCssSelector('select#customer\\.profile\\.dateOfBirth_year > option:nth-child(3)')
.click()
.sleep()
.end()
//Registration
.findByCssSelector('input[id="email"]')
.click()
.type('clark' + Math.floor(Math.random()*10000000000)+'@testing.qa')
.end()
.findByCssSelector('input[id="password"]')
.click()
.type('qasecret')
.end()
.findByCssSelector('input[id="password2"]')
.click()
.type('qasecret')
.end()
.findByCssSelector('span.glyphicon.glyphicon-chevron-down')
.click()
.end()
.findByCssSelector('input[id="voucherCode"]')
.click()
.type('SALES')
.end()
.takeScreenshot()
.then(function(data) {
fs.writeFileSync("/tmp/Screenshot/Registration_" + heute + ".png", data, 'base64');
})
//Submit
.findByCssSelector('#order_form_section input[type=submit]')
.click()
.sleep(5000)
.end()
}
};
return RegistrationPage;
});
DE: function (session, csv) {
var persona = personas[csv]
var countrycode = (persona["Country"]);
this.timeout = 500000;
return session
//Adress Page
//Firstname
.setFindTimeout(500000)
.findByCssSelector('input[id="billingAddress.firstName"]')
.click()
.type(persona["firstName"])
.end()
//Lastname
.findByCssSelector('input[id="billingAddress.lastName"]')
.click()
.type(persona["lastName"])
.end()
//Country
**.findByCssSelector('select#billingAddress\\.country > option:nth-child(' + countrycode + ')')**
.click()
.end()
//1.Country 2.DT 3.AT 4.CH 5.NL 6.DK 7.SE 8.LU 9.BE
//Streetname
.findByCssSelector('input[id="billingAddress.street"]')
.click()
.type(persona["streetName"])
.end()
//streeNumber
.findByCssSelector('input[id="billingAddress.streetNumber"]')
.click()
.type(persona["streetNumber"])
.end()
//Postcode
.findByCssSelector('input[id="billingAddress.zip"]')
.click()
.type(persona["PostalCode"])
.end()
//City
.findByCssSelector('input[id="billingAddress.city"]')
.click()
.type(persona["city"])
.end()
//Birthday
//0-31 Days
.findByCssSelector('select#customer\\.profile\\.dateOfBirth_day > option:nth-child(3)')
.click()
.end()
//0-12 Months
.findByCssSelector('select#customer\\.profile\\.dateOfBirth_month > option:nth-child(3)')
.click()
.end()
//0-82 Years
.findByCssSelector('select#customer\\.profile\\.dateOfBirth_year > option:nth-child(3)')
.click()
.sleep()
.end()
//Registration
.findByCssSelector('input[id="email"]')
.click()
.type('clark' + Math.floor(Math.random()*10000000000)+'@testing.qa')
.end()
.findByCssSelector('input[id="password"]')
.click()
.type('qasecret')
.end()
.findByCssSelector('input[id="password2"]')
.click()
.type('qasecret')
.end()
.findByCssSelector('span.glyphicon.glyphicon-chevron-down')
.click()
.end()
.findByCssSelector('input[id="voucherCode"]')
.click()
.type('SALES')
.end()
.takeScreenshot()
.then(function(data) {
fs.writeFileSync("/tmp/Screenshot/Registration_" + heute + ".png", data, 'base64');
})
//Submit
.findByCssSelector('#order_form_section input[type=submit]')
.click()
.sleep(5000)
.end()
}
};
return RegistrationPage;
});