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?
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