2

次の違いは何ですか:

open(url); // this is from Selenide

&

 driver.navigate().to(url); //this is from selenium

&

driver.get(url); //this is from selenium
4

1 に答える 1

3

大きな違いはありません。open(url)の同義語ですdriver.navigate().to(url);

また、メソッドopen(url)は相対 URL をサポートしています。したがって、ベース URL を一度設定すると、テスト全体で相対 URL を使用できます。

public void setUp() {
  Configuration.baseUrl = "http://localhost:8888";
}

@Test
public void test1() {
  open("/payments/index");
  ...
}
于 2016-03-21T16:02:13.983 に答える