Watin C# - Firefox 实例
我有一个班级 A类:
FireFox ff = new FireFox();
ff.WaitForComplete();
B类 Span targetTab = ff.Span(Find.ByText("系统")); targetTab.Click();
我需要在B类中使用firefox实例ff.span,如果我这样做,我们必须为firefox创建一个新对象,这又会打开另一个firefox浏览器。无论如何,我可以将两个“ff”实例连接在一起,以便所有内容都在同一个兄弟中运行..
谢谢, 巴拉吉小号
I've a class with
class A :
FireFox ff = new FireFox();
ff.WaitForComplete();
class B
Span targetTab = ff.Span(Find.ByText("System"));
targetTab.Click();
i need to use firefox instances ff.span in class B, if i do so we have to create an new object for firefox, and which inturns open another firefox browser. is there is anyway where i can attach both the "ff"instances together so that everything runs in same broser..
thanks,
Balaji S
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以将 A 类 ff 实例传递给 B 类构造函数并使用它。这是伪代码L
class A
class B
You can pass A classes ff instance to B class constructor and use it. Here is pseudo codeL
class A
class B