Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在做一个项目,我正在测试像 Skype 这样的程序中的所有内容。通过这个程序,我们可以进行互联网通话。我无法测试两个不同的帐户是否可以同时通话。我正在使用硒。谁能帮我?
只需创建两个 WebDriver 实例:
WebDriver driver1 = new FirefoxDriver(); driver1.get("http://your-application"); WebDriver driver2 = new FirefoxDriver(); driver2.get("http://your-application"); // login with driver1 and driver2