Questions tagged [browserstack]

BrowserStack is a cloud service providing web browsers and mobile devices for both manual and automated testing.

Testing in Browsers

Test in real browsers including Internet Explorer 6, 7, 8, 9 and 10 (with metro mode).

Testing Android/iOS Apps

Use App Live for manual testing an app on a wide range of different OS versions or use App-Automate to automate the tests to be run on the cloud.

Official real mobile devices and emulators

Provides a wide range of real iOS and Android devices for testing on a combination of various browsers such as Chrome, Firefox, Safari.

Also, supports Windows phone and tablets emulators. Which allows users to test on different combinations.

Test local and internal servers

You can test against any internal/private server or local HTML designs in their remote browsers through our secure tunnel setup via BrowserStack Local Binary support.

Pre-installed developer tools

BrowserStack provides dev tools in real-mobiles which enables debugging cross-browser issues in realtime. For quick cross-browser testing and debugging on Windows or macOS, browsers come with preinstalled tools like Firebug, Developer Toolbar.

Multiple Desktop OS

Test on multiple flavors of Windows and Mac OSX Operating systems.

Screenshots

Screenshots tool provides a quick snapshot of a page by capturing screenshots on a combination of selected devices.

693 questions
3
votes
3 answers

Browser Stack Local Testing Parellel Test

I need to run my all test cases in parallel of 4 different browser. On my chrome driver its work fine. Problem arise when i try to run in parallel as local testing. I get following error com.browserstack.local.LocalException: *** Error: Either…
cod
  • 151
  • 4
  • 13
3
votes
1 answer

Codeception - Can't save and load session snapshot in Firefox

I have a loggin method that can save session snapshot for future calls. public function loggedInIntoFrontend($name, $password) { $I = $this->driver; // if snapshot exists - skipping login if ($I->loadSessionSnapshot('login')) { …
Vladimir Bunchuk
  • 103
  • 1
  • 10
3
votes
0 answers

Selenium Safari webdriver timeouts when trying to find an element

I made a script to automate front-end testing with selenium and everything worked great with the Chrome WebDriver. However now I try to test my suites cases on other browsers and particularly in the safari webdriver and it timeouts while trying to…
Djagu
  • 163
  • 1
  • 12
3
votes
1 answer

Accessing html tag using selenium and CssSelector

I am trying to access the order attribute for the html tag header > div.column Here's my code : var element = driver.FindElement(By.CssSelector("header > div.column")).GetCssValue("order"); But I got Object reference issue for GetCssValue . looks…
IndieTech Solutions
  • 2,527
  • 1
  • 21
  • 36
3
votes
1 answer

detect new tab is open with behat and mink PHP

I have a behat test that clicks a button which usually opens a url in a new tab. I can I test that a new tab has been opened after the button has been clicked? this is the gherkin: Scenario: Open document in a new tab Given I am a "Project…
chinds
  • 1,761
  • 4
  • 28
  • 54
3
votes
1 answer

Run protractor e2e tests in TFS build

How I should configure my TFS build to make it possible run protractor e2e test in browserstack, and return me some html report which test are failed? I am new in TFS. I can do it manually from my machine, but not sure have I can do it in TFS. This…
odpro
  • 96
  • 1
  • 6
3
votes
1 answer

Why can't paste into BrowserStack browser?

I'm just trying to paste a URL from my clipboard into browserstack, but it won't paste. This mentions when you aren't supposed to be able to: You cannot copy from remote browsers to your browser: In Firefox and Chrome, if the BrowserStack…
Andrew
  • 18,680
  • 13
  • 103
  • 118
3
votes
2 answers

How to get rid of IE security dialog with Selenium / Nightwatch.js / Browserstack

When running tests against IE in browserstack it seems that IE is coming up with a security exception message: This is coming up because the backend api that is being called is using a self signed cert which is untrusted (it needs to be like this…
Marty
  • 2,965
  • 4
  • 30
  • 45
3
votes
1 answer

How to override default CURL timeout for Codeception - using Browserstack

I am testing Browserstack for acceptance tests. They have a peculiar habit of taking a very long time to respond to certain requests. I am running Codeception and I am always getting the CURL 30 second timeout error. I want to be able to override…
Joel Joel Binks
  • 1,628
  • 5
  • 27
  • 47
3
votes
5 answers

Configuring a Jenkins build using Selenium with Browserstack

Has anyone out in the community successfully created a Selenium build in Jenkins using Browserstack as their cloud provider, while requiring a local testing connection behind a firewall? I can say for sure Saucelabs is surprisingly easy to execute…
3
votes
1 answer

Ember.js - CircleCI - BrowserStack

I try to connect together our cicleCI with browserstack and run our integration_test and unit tests not only with PhantomJS but on real Firefox and Internet Explorer as well, using Browserstack service. I try to configure browserstack-cli. I can run…
Zoltan
  • 4,936
  • 1
  • 35
  • 40
3
votes
2 answers

intern.js and Browserstack

Intern.js is a great testrunner but it only appears to work with SauceLabs. My company already uses BrowserStack and are very happy with it. I was wondering if anyone has been able to integrate Intern.js with BrowserStack and if so how?
pyrzak
  • 63
  • 5
3
votes
1 answer

How to run one python webdriver test in multiple browsers

I am testing out BrowserStack and have a small suite of Selenium WebDriver tests written in Python. My goal is to run the tests in several different browsers. Currently I am using desired_capabilities to specify the browser, version, os, etc. What…
2
votes
1 answer

swipeGesture not supported by BrowserStack - Automation using Appium - Android

Testing Mobile native app with Appium using BroswerStack (Android device) and it throws an UnsupportedCommandException (please see below) when trying to execute the swipeGesture to perform a swipe up. Btw, it is working in a local execution using…
2
votes
1 answer

How to use explicit wait condition with selenium 4.0

using Java 17 and slenium 4.0 wait.until(ExpectedConditions.titleContains("BrowserStack")); here is full code : public class mainTestClass { public static final String USERNAME = "myuser *****"; public static final String AUTOMATE_KEY = "my ke…
Asmoun
  • 1,417
  • 5
  • 20
  • 53