javascriptmonkey-testing

Monkeytalk JS getting length of table


I have a table I need to get the number of rows on. I'm trying this

this.app.table("#1").length

but it returns 0 or 1. I'm not very familiar with javascript


Solution

  • this.app.table("#1").get("x", "size");
    

    Thats what someone in the monkeytalk-forum said and it is working! :)