I have written a test that doesn't fail when I run it but it also doesn't expand the tree like I was expecting it to.
The screen print below shows what I am trying to expand (as shown by the arrow) so that I can get on the second level and then select the next row in the tree.
Annotation 2020-06-01 153012.jpg
Here is my test, that does selects the correct row but I was hoping it would click on the 'x=tree-elbow-plus' icon and expand the tree. When the test runs it doesn't click on the icon so the row doesn't expand, but the test does run without any errors.
Can anyone see what I am doing wrong?Code:it('should expand Export control under Security', function() { ST.grid('graphnavigator[reference="graphnavisecurity"]:last') .rowWith('rid', 'root-ExportControl') .reveal() .cellAt(0) .click(); });
Thanks.