summaryrefslogtreecommitdiff
path: root/qa/qa/page/main/two_factor_auth.rb
diff options
context:
space:
mode:
Diffstat (limited to 'qa/qa/page/main/two_factor_auth.rb')
-rw-r--r--qa/qa/page/main/two_factor_auth.rb22
1 files changed, 22 insertions, 0 deletions
diff --git a/qa/qa/page/main/two_factor_auth.rb b/qa/qa/page/main/two_factor_auth.rb
new file mode 100644
index 00000000000..003bd8dd1b1
--- /dev/null
+++ b/qa/qa/page/main/two_factor_auth.rb
@@ -0,0 +1,22 @@
+# frozen_string_literal: true
+
+module QA
+ module Page
+ module Main
+ class TwoFactorAuth < Page::Base
+ view 'app/views/devise/sessions/two_factor.html.haml' do
+ element :verify_code_button
+ element :two_fa_code_field
+ end
+
+ def click_verify_code_button
+ click_element :verify_code_button
+ end
+
+ def set_2fa_code(code)
+ fill_element(:two_fa_code_field, code)
+ end
+ end
+ end
+ end
+end