Updating Session ID to Test Name in Browserstack

619 Views Asked by At

I am using Ruby/Capybara, and hooked up my test to browserstack but I see session ID in browserstack instead of the test name. This is how I set it up:

Capybara.register_driver :browserstack do |app|
Capybara::Selenium::Driver.new(app,
                               browser: :remote,
                               url: 'some/URI',
                               desired_capabilities: browserstack_capabilities)

How do I see the test name?

1

There are 1 best solutions below

1
Anthony Fernandes On

You may try adding the "name" : "Some-name" capability in your capability set and that should work. For more details on capabilities, you may refer this link: https://www.browserstack.com/automate/capabilities