次の違いは何ですか:
open(url); // this is from Selenide
&
driver.navigate().to(url); //this is from selenium
&
driver.get(url); //this is from selenium
次の違いは何ですか:
open(url); // this is from Selenide
&
driver.navigate().to(url); //this is from selenium
&
driver.get(url); //this is from selenium
大きな違いはありません。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");
...
}