如何在 Selenium 中编写函数并从另一个页面调用它?
我是硒的新手。我需要在 Selenium 中编写一个函数。这是示例代码。如果正确,我们将在哪里保存该文件以及扩展名是什么?如何从另一个页面调用这个函数?
请帮我。
您能给我 Selenium 中函数的示例代码吗?
package com.example.tests;
public void chk_test(String news){
System.out.println("Success");
}
I'm new to Selenium. I need to write a function in Selenium. This is a sample code. If it is correct, where we will save this file and what is the extension? How can I call this function from another page?
Please help me.
Can you give me sample code for a function in Selenium?
package com.example.tests;
public void chk_test(String news){
System.out.println("Success");
}
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
对于初学者,请使用 IDE,例如 Eclipse。
在同一个项目中,您应该能够创建不同的包,并在类中导入 com.example.tests; 以将您的函数用作
chk_test(aString);
希望这有助于您入门。有大量的文章/教程可帮助您使用 Eclipse 设置 Selenium RC,并使用 Java 进行编程。
For starters, use an IDE, such as Eclipse.
Within the same project, you should be able to create different packages, and
import com.example.tests;
within a class to use your function aschk_test(aString);
Hope this helps get you started. There are tons of articles/tutorials to get setup with Selenium RC using Eclipse, programming in Java.