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:
commit
781fa4634b
@ -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) {
|
||||
|
Loading…
Reference in New Issue
Block a user