2

次の行でエラーが発生します。

wait.until(ExpectedConditions.visibilityOfElementLocated(By.xpath("//input[@id='username']")));

コードは次のとおりです。

WebDriverManager.chromedriver().setup();
ChromeOptions options = new ChromeOptions();
options.addArguments("--start-maximized");
options.addArguments("--disable-notifications");
ChromeDriver driver = new ChromeDriver(options);
driver.manage().timeouts().implicitlyWait(50, TimeUnit.SECONDS);
driver.get("https://test.salesforce.com/");
WebDriverWait wait=new WebDriverWait(driver, 120);
driver.findElement(By.id("username")).sendKeys("");
driver.findElement(By.id("password")).sendKeys("");
driver.findElement(By.id("Login")).click();
wait.until(ExpectedConditions.visibilityOfElementLocated(By.xpath("//a[contains(@class,'home-accounts')]")));**

また、私は観察しました:

wait.until(ExpectedConditions.presenceOfElementLocated(By.xpath("//a[contains(@class,'home-accounts')]")));

正常に動作しています。

対処方法は?

スタックトレース:

java.lang.NullPointerException
    at org.openqa.selenium.remote.RemoteWebElement.isDisplayed(RemoteWebElement.java:323)
    at org.openqa.selenium.support.ui.ExpectedConditions.elementIfVisible(ExpectedConditions.java:315)
    at org.openqa.selenium.support.ui.ExpectedConditions.access$100(ExpectedConditions.java:44)
    at org.openqa.selenium.support.ui.ExpectedConditions$7.apply(ExpectedConditions.java:206)
    at org.openqa.selenium.support.ui.ExpectedConditions$7.apply(ExpectedConditions.java:202)
    at org.openqa.selenium.support.ui.FluentWait.until(FluentWait.java:248)
    at TestClass.NewTest.TC_DealDetails_0(NewTest.java:70)
    at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
    at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62)
    at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
    at java.lang.reflect.Method.invoke(Method.java:498)
    at org.testng.internal.MethodInvocationHelper.invokeMethod(MethodInvocationHelper.java:124)
    at org.testng.internal.Invoker.invokeMethod(Invoker.java:583)
    at org.testng.internal.Invoker.invokeTestMethod(Invoker.java:719)
    at org.testng.internal.Invoker.invokeTestMethods(Invoker.java:989)
    at org.testng.internal.TestMethodWorker.invokeTestMethods(TestMethodWorker.java:125)
    at org.testng.internal.TestMethodWorker.run(TestMethodWorker.java:109)
    at org.testng.TestRunner.privateRun(TestRunner.java:648)
    at org.testng.TestRunner.run(TestRunner.java:505)
    at org.testng.SuiteRunner.runTest(SuiteRunner.java:455)
    at org.testng.SuiteRunner.runSequentially(SuiteRunner.java:450)
    at org.testng.SuiteRunner.privateRun(SuiteRunner.java:415)
    at org.testng.SuiteRunner.run(SuiteRunner.java:364)
    at org.testng.SuiteRunnerWorker.runSuite(SuiteRunnerWorker.java:52)
    at org.testng.SuiteRunnerWorker.run(SuiteRunnerWorker.java:84)
    at org.testng.TestNG.runSuitesSequentially(TestNG.java:1208)
    at org.testng.TestNG.runSuitesLocally(TestNG.java:1137)
    at org.testng.TestNG.runSuites(TestNG.java:1049)
    at org.testng.TestNG.run(TestNG.java:1017)
    at org.testng.remote.AbstractRemoteTestNG.run(AbstractRemoteTestNG.java:115)
    at org.testng.remote.RemoteTestNG.initAndRun(RemoteTestNG.java:251)
    at org.testng.remote.RemoteTestNG.main(RemoteTestNG.java:77)
4

3 に答える 3

0

違いは、visibilityOfElementLocated()は幅や高さなどの一部の要素スタイルをチェックするのに対し、presentsOfElementLocated()は存在のみをチェックする必要があることです。 https://seleniumhq.github.io/selenium/docs/api/java/org/openqa/selenium/support/ui/ExpectedConditions.html#visibilityOfElementLocated-org.openqa.selenium.By-

あなたの要素は本当にページに表示されていますか?


また、Null Pointer ではなく、要素が見つからない場合は .until() が TimeoutException を発生させる必要があるため、スタックトレースを確認するとよいでしょう。

https://www.seleniumhq.org/docs/04_webdriver_advanced.jsp

于 2019-09-26T16:10:59.670 に答える
0

WebDriverManager

WebDriverManagerを使用すると、 Selenium WebDriverに必要なバイナリ ドライバー (chromedriver、geckodriver など) の管理を自動化できます。次の行を追加します。

WebDriverManager.chromedriver().setup(); 

WebDriverManagerは、次のタスクを実行します。

  • マシンにインストールされているブラウザ (つまり Chrome) のバージョンをチェックします。
  • ドライバー (つまり、chromedriver) のバージョンをチェックします。不明な場合は、最新バージョンのドライバーを使用します。
  • ~/.m2/repository/webdriverWebDriverManager キャッシュに存在しない場合 (デフォルト) 、WebDriver バイナリをダウンロードします。
  • Selenium が必要とする適切な WebDriver Java 環境変数をエクスポートします。

ChromeDriverクラスdriverからを作成する代わりに、 WebDriverインターフェイスを使用する必要があります。したがって、次のように置き換える必要があります。

ChromeDriver driver = new ChromeDriver(options);

と:

WebDriver driver = new ChromeDriver(options);
于 2019-09-26T21:28:41.220 に答える