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

From Qt Wiki
Jump to navigation Jump to search
No edit summary
m (style)
 
(4 intermediate revisions by 3 users not shown)
Line 1: Line 1:
this page in: [[Category:Tools::Squish::FindingListItemsThatEndsInAGivenStringSpanish|Español]]
[[Category:Squish]]
 
[[Category:Tools::Squish]]
 
= 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
As Squish uses the full item text for identifying items in a list view, this could cause problems when
Line 12: Line 8:
that ends in a given string in a given column:
that ends in a given string in a given column:


<code>def clickListItem(obj, endValue, column):
<code>
model = waitForObject(obj).model()
def clickListItem(obj, endValue, column):
rows = model.rowCount()
  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):
  for i in range(rows):
waitForObjectItem(obj, itemString)
    itemString = str(model.data(model.index(i, column), Qt.DisplayRole).toString())
clickItem(obj, itemString, 0, 0, 0, Qt.LeftButton)
    if itemString.endswith(endValue):
return
      waitForObjectItem(obj, itemString)
      clickItem(obj, itemString, 0, 0, 0, Qt.LeftButton)
      return


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


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

Latest revision as of 17:21, 12 August 2020


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)