在 Selenium 中编写一个简单的函数
我是 Selenium 的新手。我对 Selenium 的功能有很多疑问。我将 Selenium RC 与 Java 和 Eclipse 结合使用。
我需要编写一个简单的函数来添加两个数字。我将在 test()
中的什么位置编写该函数?
如果我们想要该函数的任何其他对象,我该如何调用该函数?我们需要声明任何头文件来调用这个函数吗?请帮我。
I am a fresher in Selenium. I have lots of doubt about Selenium functions. I am using Selenium RC with Java and Eclipse.
I need to write one simple function for adding two numbers. Where will I write that function inside the test()
?
How can I call that function if we want any other object for this function? Do we need to declare any header file for calling this function? Please help me.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
我会看看这个有用的教程第 1 部分,第 2 部分
I would look at this helpful tutorial part 1, part 2
假设该函数是:
例如,您在 test() 上方编写了此函数,
您可以在 test() 中调用它,如下所示:
Lets say the function is:
You write this function -- for example -- just above the test()
You can call it in your test() like this: