Commit 4ae9d26e authored by Lin Jen-Shin's avatar Lin Jen-Shin

Merge branch 'fix-geo-ssh-push-secondary-clone-qa' into 'master'

Backport page object changes from EE

See merge request gitlab-org/gitlab-ce!23956
parents 75121798 cbfc00a1
......@@ -112,6 +112,10 @@ module QA
has_css?(element_selector_css(name))
end
def has_no_text?(text)
page.has_no_text? text
end
def within_element(name)
page.within(element_selector_css(name)) do
yield
......
......@@ -85,6 +85,14 @@ module QA
found
end
def has_no_text?(text)
found = super
log(%Q{has_no_text?('#{text}') returned #{found}})
found
end
def within_element(name)
log("within element :#{name}")
......
......@@ -65,6 +65,13 @@ describe QA::Support::Page::Logging do
.to output(/has_element\? :element returned true/).to_stdout_from_any_process
end
it 'logs has_no_text?' do
allow(page).to receive(:has_no_text?).with('foo').and_return(true)
expect { subject.has_no_text? 'foo' }
.to output(/has_no_text\?\('foo'\) returned true/).to_stdout_from_any_process
end
it 'logs within_element' do
expect { subject.within_element(:element) }
.to output(/within element :element/).to_stdout_from_any_process
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment