Squish/Finding List Items that End in a Given String: Difference between revisions

From Qt Wiki
Jump to navigation Jump to search
(Mark as not-a-category)

Revision as of 02:55, 25 November 2017

This article is nominated for deletion. Reason: Page not category. Include as single block in Squish: finding list items that end in a given string if relevant
Please raise your support/opposition to this nomination in the article's discussion page.

This page in: Español

Finding list items that ends in a given string

As Squish uses the full item text for identifying items in a list view, this could cause problems when the beginning of the item text is different based on e.g. which machine you are running the test case.

One solution to this could be to look for items ending with a given string, to avoid including the changing string prefix. This can be done with the utility function below, which clicks an item that ends in a given string in a given column:

def clickListItem(obj, endValue, column):
 model = waitForObject(obj).model()
 rows = model.rowCount()

for i in range(rows):
 itemString=str(model.data(model.index(i, column), Qt.DisplayRole).toString())

if itemString.endswith(endValue):
 waitForObjectItem(obj, itemString)
 clickItem(obj, itemString, 0, 0, 0, Qt.LeftButton)
 return

test.fatal("Could not find item with end value: " + endValue)

Selecting an item that ends in the string "value1" in a specific list view is then done by doing: clickListItem(":MyQListView", "value1", 0)