코드 라인 "options.addarguments ("- start-maximized ")"를 Selinum 3.0.1을 사용하여 컴파일하고 ChromDriver_win32 latest 버전과 eclispe 화성. 내가 무엇을 놓치고 있는지 알려주지. 옵션없이 컴파일하고 실행할 수 있습니다.이클립스에서 ChromeOption options.addarguments ("- start-maximized")를 컴파일 할 수 없습니다.
import org.openqa.selenium.By;
import org.openqa.selenium.WebDriver;
import org.openqa.selenium.WebElement;
import org.openqa.selenium.chrome.ChromeDriver;
import org.openqa.selenium.chrome.ChromeOptions;
import org.openqa.selenium.interactions.Actions;
public class IRSLabTestCase {
WebDriver driver1= new ChromeDriver();
ChromeOptions options = new ChromeOptions();
options.addArguments("--start-maximized"); //--> this line not getting compiled.
driver1 = new ChromeDriver(options);'
}
오류 메시지가 무엇입니까? – SantiBailors