marathonITE脚本勾选JTable单元格中的复选框

时间:2015-09-01 14:58:25

标签: python swing checkbox jtable marathontesting

我使用marathonITE测试工具自动测试java swing应用程序。

在其中一个窗口中,我有一个带有6列和N行的JTable。 该表的两列是复选框类型列。

我的要求是编写自动化脚本以在给出行和列时勾选复选框。

select('table', 'true', '[row=1][column=0]')

我尝试了这一行,但它将脚本指向

class Fixture:


def teardown(self):
    '''Marathon executes this method at the end of test script.'''
    pass

然后停止该过程。

当给出列和行时,有没有办法勾选表格内的复选框?

2 个答案:

答案 0 :(得分:0)

我找到了解决此问题的方法。 在第一部分中,我遍历表格并检查测试值是否等于每个单元格值。 在第二部分中,我使用击键来遍历特定的行和列,并使用空格并输入击键来勾选复选框。

请注意,此方法仅适用于检查单个复选框。对于多个复选框,必须使用击键移动并重新进行击键运动。

#1st Part

            textValue = "Test Value"
            deplTable = get_component('table')
            no_of_columns = deplTable.getColumnCount()
            no_of_rows = deplTable.getRowCount()

            for col in range (no_of_columns):
                if ( col == 1 or col == 4 ):
                    for row in range (no_of_rows):

                        if ( deplTable.getValueAt( row ,col) == textValue ):
                            print 'Found at row:',row,' col:',col
#2nd Part
                            for x in range (row+1) :
                                keystroke('table', 'Down')
                            keystroke('table', 'Left')
                            if ( col > 1 ):
                                for  y in range (col-1) :
                                    keystroke('table', 'Right')

                            keystroke('table', 'Space')
                            keystroke('table', 'Enter')

答案 1 :(得分:0)

以这种方式编写代码:

select('table', 'true', '{1,0}')

这对我有用。