|
比如一文本文档中的内容如下
--mon--11--mo--22--mon--33--mon--44--n--
添加一个text chekpoint,为了验证文本m和n之间的文本是否为o
其中checked text为o,
text before 为m,并设置相应的“Text to check is displayed after occurrence”,假设指定为x,默认值为1
text after 为n,并设置相应的“Text to check is displayed before occurrence”,假设指定为y,默认值为1
练习中发现,x的设置起作用,而y的设置不起作用
比如x=1,而y=1,则Text Checkpoint: captured "on--11--mo--22--mon--33--mon--44--" between m and n
比如x=2,而y=1,则Text Checkpoint: captured "o--22--mon--33--mon--44--" between m and n
比如x=3,而y=1,则Text Checkpoint: captured "on--33--mon--44--" between m and n
比如x=5,而y=1,则Text Checkpoint: captured "" between m and n
-----------------------以上的结果与文档上介绍的相符
而y的设置不起作用
比如x=2,而y=1,
比如x=2,而y=2,
比如x=2,而y=3,
比如x=2,而y=4,
则都是相同的结果,Text Checkpoint: captured "o--22--mon--33--mon--44--" between m and n
比如x=2,而y=5,则Text Checkpoint: captured "" between m and n
为什么y的设置不起作用?难道我的理解有错误?
下面是英文帮助文档上的介绍:
Text to check is displayed before occurrence. Checks that the checked text is displayed before the specified text. If the identical text string you specify is displayed more than once on the page, you can specify to which occurrence of the string you are referring.
If you accept the default text that QuickTest recommends, the number in the dialog box will be correct. If you modify the text, confirm that the occurrence number is also accurate.
If you choose a non-unique text string, change the occurrence number appropriately. For example, if you want to check that the words Mercury Tours are displayed before the fourth occurrence of the word the, enter 4 in the Text to check is displayed before occurrence box.
下面是中文帮助文档上的介绍:
要检查的文本显示于出现之前
检查已检查的文本是否在指定文本前显示。
QuickTest 从字符串“在之后显示”的结尾开始计算指定的文本“在之前显示”的出现次数。换句话说,它从选择要检查的文本开始查找指定文本。
如果接受 QuickTest 建议的默认文本,则对话框中的数字将是正确的。如果修改建议的文本字符串,并且指定的字符串显示在突出显示的文本以及“在之前显示”文本中,则需要相应地修改出现次数。
例如,如果要检查句子 my hat is the best 是否显示在单词 hat 之前,请在“要检查的文本显示于出现之前”框中输入 2,以显示希望文本在单词 hat 第二次出现之前显示。
|
|