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.

555 questions
0
votes
1 answer

How to test asp application in browserstack or other cross-browser tools?

I have created a simple asp page, which is works fine in IIS server. I want test this page in various browsers, so I choose [this][1] online tester, but it does not work. I tried to refresh the virtual directory and tried again, still I didn't get…
rish
  • 207
  • 1
  • 2
  • 14
0
votes
2 answers

Can't get php-webdriver to work

I would like to run automated tests on browserstack which require that the libaries from github.com/facebook/php-webdriver are installed. I'm working on Ubuntu 14.04 running Apache2. I'm following the Get The Code steps from the GitHub repo but when…
Holly
  • 6,390
  • 12
  • 75
  • 123
0
votes
2 answers

Continuous Integration with large Protractor test suites

We have an application that is 3 months into development worked on by 2 developers. The website is relatively small and only 1/3rd completed, but the tests are reasonably comprehensive. Running Protractor on our dev machines takes 60 minutes when…
0
votes
0 answers

PHPWebDriver - Load JQuery dynamically then execute JavaScript when it is ready

I'm definitely a noob in Selenium, but I'm trying to figure out how to use BrowserStack Automate via php-webdriver to do automated testing on Web pages using their impressive array of browsers and devices. What I'm trying to do is: Load JQuery…
BannerMan
  • 10,370
  • 18
  • 73
  • 121
0
votes
2 answers

Unrecognized options "suites" under "behat"

I am using behat 2.4(stable), and I am trying to pass parameters into class's, that extends BehatContext class, constructor. However I get 'Unrecognized options "suites" under "behat"', with the following set up. I am using the following behat.yml…
Potney Switters
  • 2,394
  • 3
  • 27
  • 45
0
votes
1 answer

PHPUnit, Selenium and Magento development environment

I have a Magento-based application and I'm trying to use PHPUnit with Selenium to test clicking on the links, but I keeps getting an error. I am also using the BrowserStack, which could be causing the issue. Also, if anyone knows how to print out…
0
votes
2 answers

Ipa Install on Browser Stack

How to install .ipa file on the Iphone or Ipad on Browser Stack cloud ? Though Local testing option, the safari is not recognizing the file and when i tried through DIAWI URL still safari did not recognize the file.. Can anybody suggest me a…
0
votes
0 answers

How can eliminate or disable popup window with FireFox Webdriver and Selenium Java BrowserStack?

I will appreciated your help to slove my popup windows problem I try to do an Automate test with Selenium and Java . When I execute the test with FireFox 30, there is an popup windows that appears in the middle of my execution window . This…
Ms White
  • 1
  • 1
  • 1
0
votes
1 answer

Working with intern.js and browserstack, access the remote browser environment

I'm trying to perform a basic functional test: define([ 'intern!object', 'intern/chai!assert', '../Request', 'require' ], function (registerSuite, assert, Request, require) { var request, url =…
cleau
  • 45
  • 1
  • 6
0
votes
1 answer

How to tell if a RemoteWebDriver has quit on the other end?

I am using Selenium to run automated tests using RemoteWebDriver. The service that I am using (BrowserStack) only allows me to run 5 sessions in parallel, and there seems to be a delay between when my code executes the driver.quit() command and…
0
votes
1 answer

BrowserStack - Execute client JS with Node.js

I've built a tool to automate visual regression as part of an E2E test suite and while it works fine under most situations I have encountered a problem trying to measure visual regression with auto playing HTML5 videos. As a video is a moving target…
Palgie
  • 195
  • 2
  • 9
0
votes
1 answer

changing an element when screen dimensions change

I am using semanticcss framework. I have two navigation menus one for desktop and the other for mobile. I am using this css: #mob { display: none; } @media (max-width: 960px) { #desktop { display: none; } #mob { …
kaylin1997
  • 25
  • 1
  • 5
0
votes
1 answer

Android 2.x weird characters

I'm doing some mobile testing on browserstack and have begun looking at older devices. I'm getting a strange character encoding in android 2.x browsers - see below I cannot figure out what would be causing this Character encoding? svgs' as…
Matt
  • 778
  • 2
  • 9
  • 30
0
votes
1 answer

front end development: web browsers differences when using browserstack

Scope: only front end issues (HTML, CSS, javascript) browsers/devices: desktop browsers (IE8+, Chrome, Firefox & Safari), ipad's browser (mobile Safari), mobile devices browsers (android, mobile safari) I have experienced unexpected differences…
Adrien Be
  • 17,566
  • 15
  • 96
  • 134
0
votes
1 answer

Retrieving file type using Selenium Web Driver and NodeJS

In Selenium, I can locate an item and its HTML this way: driver.get('http://www.google.com/ncr'); driver.findElement(webdriver.By.id('hplogo')).getAttribute('outerHTML').then( function(html) { console.log(html); }); Is it possible for me…
mcranston18
  • 3,760
  • 2
  • 26
  • 32