Hi again,
In the application I'm trying to test (application not written by me)
there is a table where the second to last row of the table contains
pagination links and the last row of the table contains a single
header cell with an input button. Any advice on how I can model this
in Tellurium? I see that I can set the model for specifc cells/rows
referenced by number but if there are less results than fit on one
page the index of the last row is variable.
Thinking it through while writing this mail (silent rubber duck
debugging ;-) ) it seems the best way to model this interface would be
to model the pagination and input button in a separate component from
the regular table. Something like the following...
ui.Table(uid: "tableTable", clocator: [id: "myTable"]) {
TextBox(uid: "Header: 1", clocator: [text: "Column1"])
TextBox(uid: "Header: 2", clocator: [text: "Column2"])
TextBox(uid: "Header: 3", clocator: [text: "Column3"])
TextBox(uid: "Header: 4", clocator: [text: "Column4"])
UrlLink(uid: "row: *, column: 1", clocator: [:])
UrlLink(uid: "row: *, column: 4", clocator: [:])
TextBox(uid: "all", clocator: [:])
}
ui.Container(uid: "tableOthers", clocator: [id: "myTable"]) {
// TODO: Something for pagination
Button(uid: "createNew", clocator: [value: "newItem"])
}
Is this the correct way to go for this? Or is there some kind of "row:
last, column: *" syntax I can use?
Regards,
Jonathan
--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups
"tellurium-users" group.
To post to this group, send email to [email protected]
To unsubscribe from this group, send email to
[email protected]
For more options, visit this group at
http://groups.google.com/group/tellurium-users?hl=en
-~----------~----~----~----~------~----~------~--~---