當前位置: 首頁>>代碼示例>>Golang>>正文


Golang Page.Reset方法代碼示例

本文整理匯總了Golang中github.com/sclevine/agouti.Page.Reset方法的典型用法代碼示例。如果您正苦於以下問題:Golang Page.Reset方法的具體用法?Golang Page.Reset怎麽用?Golang Page.Reset使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在github.com/sclevine/agouti.Page的用法示例。


在下文中一共展示了Page.Reset方法的1個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的Golang代碼示例。

示例1: testPage


//.........這裏部分代碼省略.........
					Expect(page.ConfirmPopup()).To(Succeed())
					Expect(page.RunScript("return promptText;", nil, &promptText)).To(Succeed())
					Expect(promptText).To(Equal("banana"))
				})
			})
		}

		It("should support manipulating and retrieving cookies", func() {
			Expect(page.SetCookie(&http.Cookie{Name: "webdriver-test-cookie", Value: "webdriver value"})).To(Succeed())
			cookies, err := page.GetCookies()
			Expect(err).NotTo(HaveOccurred())
			cookieNames := []string{cookies[0].Name, cookies[1].Name}
			Expect(cookieNames).To(ConsistOf("webdriver-test-cookie", "browser-test-cookie"))
			Expect(page.DeleteCookie("browser-test-cookie")).To(Succeed())
			Expect(page.GetCookies()).To(HaveLen(1))
			Expect(page.ClearCookies()).To(Succeed())
			Expect(page.GetCookies()).To(HaveLen(0))
		})

		It("should support resetting the page", func() {
			Expect(page.SetCookie(&http.Cookie{Name: "webdriver-test-cookie", Value: "webdriver value"})).To(Succeed())
			Expect(page.GetCookies()).To(HaveLen(2))

			Expect(page.RunScript("localStorage.setItem('some-local-storage-key', 'some-local-storage-value');", nil, nil)).To(Succeed())
			var localStorageTest string
			Expect(page.RunScript("return localStorage.getItem('some-local-storage-key')", nil, &localStorageTest)).To(Succeed())
			Expect(localStorageTest).To(Equal("some-local-storage-value"))

			Expect(page.RunScript("sessionStorage.setItem('some-session-storage-key', 'some-session-storage-value');", nil, nil)).To(Succeed())
			var sessionStorageTest string
			Expect(page.RunScript("return sessionStorage.getItem('some-session-storage-key')", nil, &sessionStorageTest)).To(Succeed())
			Expect(sessionStorageTest).To(Equal("some-session-storage-value"))

			Expect(page.Find("#popup_alert").Click()).To(Succeed())

			Expect(page.Reset()).To(Succeed())

			By("navigating to about:blank", func() {
				Expect(page.URL()).To(Equal("about:blank"))
			})

			Expect(page.Navigate(server.URL)).To(Succeed())

			By("deleting all cookies for the current domain", func() {
				Expect(page.GetCookies()).To(HaveLen(1))
			})

			By("deleting local storage for the current domain", func() {
				var localStorageTest string
				Expect(page.RunScript("return localStorage.getItem('some-local-storage-key');", nil, &localStorageTest)).To(Succeed())
				Expect(localStorageTest).To(BeEmpty())
			})

			By("deleting session storage for the current domain", func() {
				var sessionStorageTest string
				Expect(page.RunScript("return sessionStorage.getItem('some-session-storage-key');", nil, &sessionStorageTest)).To(Succeed())
				Expect(sessionStorageTest).To(BeEmpty())
			})

			By("allowing reset to be called multiple times", func() {
				Expect(page.Reset()).To(Succeed())
				Expect(page.Reset()).To(Succeed())
				Expect(page.Navigate(server.URL)).To(Succeed())
			})
		})

		It("should support various mouse events", func() {
			checkbox := page.Find("#some_checkbox")

			By("moving from the disabled checkbox a regular checkbox", func() {
				disabledCheckbox := page.Find("#some_disabled_checkbox")
				Expect(disabledCheckbox.MouseToElement())
				Expect(page.MoveMouseBy(-24, 0)).To(Succeed())

				// NOTE: Firefox does not move the mouse by an offset correctly
				if browserName == "Firefox" {
					Expect(checkbox.MouseToElement())
				}
			})

			By("single clicking on a checkbox", func() {
				Expect(page.Click(agouti.SingleClick, agouti.LeftButton)).To(Succeed())
				Expect(checkbox).To(BeSelected())
			})

			By("holding and releasing a click on a checkbox", func() {
				Expect(page.Click(agouti.HoldClick, agouti.LeftButton)).To(Succeed())
				Expect(page.Click(agouti.ReleaseClick, agouti.LeftButton)).To(Succeed())
				Expect(checkbox).NotTo(BeSelected())
			})

			By("moving the mouse pointer and double clicking", func() {
				doubleClick := page.Find("#double_click")
				Expect(doubleClick.MouseToElement()).To(Succeed())
				Expect(page.DoubleClick()).To(Succeed())
				Expect(doubleClick).To(HaveText("double-click success"))
			})
		})
	})
}
開發者ID:oneumyvakin,項目名稱:agouti,代碼行數:101,代碼來源:page_test.go


注:本文中的github.com/sclevine/agouti.Page.Reset方法示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。