How To Wrte good bug report for Manual Testing?
A bug report is very easy to write. But what should be the column for bug reports?

1
Testing
How can I test sortableJs ? (RSpec)
I made a drag and drop to-do-list with SortableJs and i'm trying to test the drag-n-drop with RSpec/Selenium/Capybara if the request is sent onEnd.
I'm able to do the drag n drop using selenium `d...

1
Testing
Can anyone point me in the direction of some good RSpec tutorials?
Go to tutorialspoint

4
Testing
How do I test the order of elements on a rails app page with Rspec / Capybara?

2
Testing
Accessing The Rails test.key on GitHub Actions
I have credential files and keys for production, development, and test. Meaning I have no master.key file.
How do I then access my test.key using GitHub actions?
Using these approaches does not w...

1
Testing
How do I show the keyboard in a web console on an i[Phone|Pad]
Hi all,
so I know how I can _allow displaying the web console_ on a mobile device (iPhone or iPad in my case) by putting
```
config.web_console.whitelisted_ips = %w(0.0.0.0/0 ::/0)
```
i...

1
Testing
How do I find on an object in an api/v1/controller requested spec?
Hi there, this my first question =), am so happy!.... =)
I have a this:
RSpec.describe Api::V1::Controller, type: :request do
describe 'on initialize' do
let(:thing) { FactoryBo...

1
Testing
Warden and System Tests are driving me insane.
I was trying to use "driven_by :rack_test" when changing to driven_by :selenium_chrome_headless it works as expected.

3
Testing
How do I fix Github Action test error caused by "DevToolsActivePort file doesn't exist"?
Hey - I have a Github Action test file as below. When I run the CI, the system tests which use Selenium WebDriver do not pass. The following error occurs:
```
Selenium::WebDriver::Error::UnknownE...

1
Testing
Ruby on Rails 5.1 & Vue.js 2.4.x – Testing with Karma, Jasmine – How to install? [bounty on stackoverflow]
I updated my Question on [stackoverflow](https://stackoverflow.com/questions/46194455/ruby-on-rails-5-1-vue-js-2-4-x-testing-with-karma-jasmine-how-to-install) and added a **bounty**

2
Testing
Rails 6 basics issue
Rails comes with the webdrivers gem now and you should use that now. It makes things a lot easier. In fact, there's nothing you have to setup other than just installing the gem (unless you want to ...

2
Testing
RSpec w/capybara vs Mini Test
@sweedledee there's not a lot of good examples out there! I did a lot of the [Testing Rails series](https://gorails.com/series/testing-ruby-on-rails) in Minitest which is a start. The Rails test su...

7
Testing
How to start with parallel testing in local as well as with travis CI?
I want to use parallel testing to reduce the build time.

2
Testing
How to create a minitest fixture for a non database model?
Actually... it seems it is auo loading them into the test environment... So, consider this closed :)

2
Testing
Running only a part of a huge (2000+) specs suite
In addition to what Axel wrote earlier, you could also add a `focus`-tag to specific cases, should you only want to test them individually. It works like so:
```
# specs/discount_checkout_spec.rb
...

3
Testing
Simple Test with empty rails fails
Hi everyone,
I'm currently trying to create a template for internal Rails development and I just tried the newest Rails 6.0.3.1 and it fails with a simple test:
```
/tmp $ mkdir app-test
/t...

1
Testing
guard-minitest runs ALL tests not just the ones for the target file changed

2
Testing
rails test attempts to create multiple test databases and fails because it cannot connect
Well, I learned about [Parallel Testing](https://edgeguides.rubyonrails.org/testing.html#parallel-testing) today, a new "feature" of Rails 6. Kinda cool, but probably shouldn't be a default of newl...

2
Testing