List Icon
Archiv Mailingliste

2019 bis Juli 2022  2018  | 2017 2016 2015 | 2014 | 2013

Die Mailingliste ist seit Juli 2022 geschlossen, dient aber weiterhin als Informationsarchiv zu QF-Test.
Wenn Sie über Neuerungen zu QF-Test informiert bleiben wollen, können Sie einfach unseren Newsletter abonnieren:
Newsletter abonnieren


[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[QF-Test] Reading a log file while it is being written


  • Subject: [QF-Test] Reading a log file while it is being written
  • From: "Fabiola Ruiz" <fabiola.ruiz@?.com>
  • Date: Wed, 22 Jan 2014 12:34:01 -0500 (EST)

Hello,

I am running a program using QFTEST which creates a log file that is automatically opened by the program. I would like QFTEST to read this log while it is being written since I need it to take a screenshot when certain text line appears. I have this SUT script but it is not working:

rc.setLocal("checkOk", "false")
def com = rc.getComponent("log_file_component")
def text = com.getX()
def m = (text =~ /text_line/)
if (m.matches()) {
   rc.setLocal("checkOk", "true")
}


I am new to Groovy and I would really appreciate any help!

Thanks in advance,

Fabiola