A
Achim Domma
Hi,
I have a class wrapping some watir code, which can be used like:
app = HelperClass.new(...)
app.login "user","user"
app.textbox 3, "some text"
app.save
I want to split this into a runner script and a script which looks like:
login "user","user"
textbox 3, "some text"
save
I think this should be possible without too much effort in ruby, but I
don't get it. Any hint is very welcome!
regards,
Achim
I have a class wrapping some watir code, which can be used like:
app = HelperClass.new(...)
app.login "user","user"
app.textbox 3, "some text"
app.save
I want to split this into a runner script and a script which looks like:
login "user","user"
textbox 3, "some text"
save
I think this should be possible without too much effort in ruby, but I
don't get it. Any hint is very welcome!
regards,
Achim