1
0
mirror of https://github.com/node-red/node-red.git synced 2023-10-10 13:36:53 +02:00

Merge pull request #1777 from node-red-hitachi/uitest-typedinput

Follow the change of typedinput interface for UI test
This commit is contained in:
Nick O'Leary 2018-06-29 10:53:27 +01:00 committed by GitHub
commit 781fa4634b
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -33,6 +33,7 @@ var payloadType = {
"json": 6,
"bin": 7,
"date": 8,
"env": 9,
};
injectNode.prototype.setPayload = function(type, value) {
@ -42,7 +43,7 @@ injectNode.prototype.setPayload = function(type, value) {
var payloadTypeXPath = '//*[@class="red-ui-typedInput-options"]/a[' + payloadType[type] + ']';
browser.clickWithWait(payloadTypeXPath);
// Input a value.
browser.setValue('#node-input-payload', value);
browser.setValue('//*[@class="red-ui-typedInput-input"]/input', value);
}
injectNode.prototype.setTopic = function(value) {