I'm unable to run/fix the Create a new implementation selenium test because I receive an error in the browser when I try to follow the steps on my local.
Creating a composition implementation for Boolean Equality/Z844, I use the same values as the test, but am unable to publish:
/**
* Details about the entries in Composition Block.
*
* [Function call] [If] - First Function Call
* [a] condition [Argument reference] [Z844K1]
* [b] then [Argument reference] [Z844K2]
* [c] else [Function call] [If] - Second Function Call
* [c1] condition [Argument reference] [Z844K2]
* [c2] then [Boolean] [false]
* [c3] else [Boolean] [true]
*/
const compositionBlockEntries = {
firstFunctionCallEntries: {
functionCallLabel: 'If',
conditionType: 'Argument reference',
conditionValue: 'Z844K1',
thenType: 'Argument reference',
thenValue: 'Z844K2',
elseType: 'Function call',
elseValue: 'If'
},
secondFunctionCallEntries: {
functionCallLabel: 'If',
conditionType: 'Argument reference',
conditionValue: 'Z844K2',
thenType: 'Boolean',
thenValue: 'false',
elseType: 'Boolean',
elseValue: 'true'
}
};This is related to T348811.


