Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for pageSource (0.1 sec)

  1. testing/smoke-test/src/smokeTest/resources/org/gradle/smoketests/play-example/test/IntegrationSpec.scala

      with GuiceOneServerPerTest
      with HtmlUnitFactory
      with ServerProvider {
    
      "Application" should {
    
        "work from within a browser" in {
    
          go to ("http://localhost:" + port)
    
          pageSource must include ("Your new application is ready.")
        }
      }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 518 bytes
    - Viewed (0)
  2. test-site/test/IntegrationTest.java

                public void invoke(TestBrowser browser) {
                    browser.goTo("http://localhost:3333");
                    assertThat(browser.pageSource()).contains("Your new application is ready.");
                }
            });
        }
    
    Registered: Wed Jun 12 15:38:08 UTC 2024
    - Last Modified: Mon Apr 20 08:41:37 UTC 2015
    - 773 bytes
    - Viewed (0)
Back to top