summaryrefslogtreecommitdiff
path: root/doc/development/testing_guide/best_practices.md
diff options
context:
space:
mode:
Diffstat (limited to 'doc/development/testing_guide/best_practices.md')
-rw-r--r--doc/development/testing_guide/best_practices.md14
1 files changed, 14 insertions, 0 deletions
diff --git a/doc/development/testing_guide/best_practices.md b/doc/development/testing_guide/best_practices.md
index 613423dbd9a..b3ce2133161 100644
--- a/doc/development/testing_guide/best_practices.md
+++ b/doc/development/testing_guide/best_practices.md
@@ -267,6 +267,20 @@ RSpec.configure do |config|
end
```
+### Debugging
+
+If you need to debug Capybara tests, using the following lines,
+you can get the current URL of Capybara server, logged in user email. Then you
+can add some arbitrary sleep to halt the test and go check out the page.
+
+Default user password is `12345678`.
+
+```
+puts current_url
+puts user.email
+sleep(200)
+```
+
---
[Return to Testing documentation](index.md)