Skip to main content
Filter by
Sorted by
Tagged with
0 votes
0 answers
24 views

I've added detox to a testing/QA project, via the instructions in this page https://wix.github.io/Detox/docs/introduction/project-setup Essentially I did this in my qa project npm install detox npm ...
andrewb's user avatar
  • 3,105
1 vote
0 answers
55 views

I basically followed the TestNG sample project to migrate an existing Android testing codebase from Appium 1 to Appium 2. The initial implementation based entirely on the sample project worked fine ...
Looi's user avatar
  • 138
0 votes
1 answer
159 views

Previously, BrowserStack offered seamless integration with Visual Studio App Center, allowing it to fetch builds automatically without requiring manual uploads. However, since App Center was ...
Resfeber Eudaimonia's user avatar
0 votes
0 answers
77 views

I am running automation tests in Browserstack and I'm constantly getting a failure on a specific scenario where a snackbar is shown and the test is waiting for it to go away. The snackbar never ...
Màrius Mora Bosch's user avatar
0 votes
1 answer
130 views

Trying to connect to browserStack automation with the following but getting an error: WebDriverException: Message: Error : Platform and Browser not valid. from appium.options.android import ...
Testing Singh's user avatar
1 vote
0 answers
71 views

I have Appium + WebdriverIO set up to run mobile test automations and tests are executing at BrowserStack. I have written my tests are at feature files as below. Feature: Home verification Scenario: ...
user2728409's user avatar
0 votes
1 answer
250 views

I'm writing test cases for browserstack App Automate using TestNG framework. I need to update browserstack configuration file programmatically before the device initialization occurs.I'm using the ...
optimistic_creeper's user avatar
0 votes
0 answers
303 views

I'm working on automation using NUnit framework alongside Selenium WebDriver version 4.18.1. My goal is to execute these test scripts on iPad and iPhone devices using Browserstack App Automate. ...
theartsycoder's user avatar
0 votes
1 answer
191 views

I am trying to execute basic script on Browserstack just to get started, my script is as below: public class BrowserStackSampleTest { public static final String USERNAME = "...
Taimoor Pasha's user avatar
1 vote
1 answer
236 views

I have repository with the WDIO+Appium+Browserstack tests on Bitbucket. My developers team has another repository for building app (for Android and iOS). When they have built new app version they ...
Hellen's user avatar
  • 43
0 votes
1 answer
375 views

I am trying to run tests in Visual Studio Test in Azure Pipelines. It worked Until I recently took a SDK from my cloud provider that made me set up run settings for my environments. I also upgraded my ...
HANSTKE's user avatar
  • 79
0 votes
1 answer
1k views

I am running my selenium test case on browserstack but its skipping the last 3 steps of the testcase and marking the status as UNMARKED. The browser stack suite report on Slack shows the Test cases as ...
Owais's user avatar
  • 1
0 votes
2 answers
362 views

I'm writing a simple selenium automation for a Angular single page applcation and integrated the browserstack. This code run fine in locally, and works on browserstack for below platforms. - os: OS ...
Chandika's user avatar
  • 123
1 vote
0 answers
461 views

In BrowserStack I selected IOS devices and opened the app by entering the URL and wanted to open the dev tools provided by BrowserStack and I tried changing some of the CSS properties in order but the ...
KnightCrawler's user avatar
0 votes
1 answer
132 views

I have the following CURL command to upload file into browser stack custom media. I want to make this process automated. Can I use REST API to do the same? Like -u is basic authentication in REST API, ...
Kavya AS's user avatar
1 vote
1 answer
387 views

I have a frontend app, and the final result of the build command is a single HTML file: index.html I have cypress tests for it, validating the index.html file shows visually perfect: cy.visit('./dist/...
Ardeshir Izadi's user avatar
0 votes
1 answer
919 views

I am trying to run the automation in local using browserStack. I am using python and appium for this. I am getting the below error. I am unable to understnad what I need to change. Appium server v1.22....
Sanskar Vijpuria's user avatar
0 votes
0 answers
620 views

I'm writing Playwright tests integrated with the Browserstack Automate dashboard. I have encountered a situation where if run e.g. 5 tests in a file, they will all run locally in Playwright and all ...
rrr's user avatar
  • 1
0 votes
1 answer
135 views

Appium script that is running in BrowserStack, is working fine for 50 minutes. The sequence is repeatedly calling for continuous execution. The session timeout for BrowserStack is set to 300 seconds. ...
Sherin Paul's user avatar
0 votes
1 answer
295 views

I am working on TestNG framework which is integrated with Browserstack for Mobile automation. The framework behaved very well until we were running a single thread in browser stack for our test ...
Bhuvaneshwari K's user avatar
1 vote
1 answer
249 views

In IOS App automation using BrowserStack App Automate tool, need to scan multiple QR codes in one session. Currently, can scan only one QR code after injecting it before camera action. Can anyone help ...
Jackie's user avatar
  • 11
1 vote
0 answers
124 views

I want to fail my Github pipeline when any UI tests fail on BrowserStack. Currently, Browserstack Gradle plugin provides a task executeDebugTestsOnBrowserstack which runs all the UI tests of the app ...
AndiGeeky's user avatar
  • 11.5k
0 votes
0 answers
844 views

I have added the browserstack variables to my msttest test scripts. We have the build being done and published in the pipeline. I added the browserstack configuration to it: inputs: ...
Greg P's user avatar
  • 812
1 vote
2 answers
1k views

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. ...
figuedmundo's user avatar
1 vote
1 answer
675 views

I have created an Appium flutter driver automation project(Java) and I need to integrate it with browser stack. Any support on it?
Anosha's user avatar
  • 21
0 votes
1 answer
1k views

How to properly quit the automation session when running Robot Scripts? I’m new to App automation. I was trying to automate one of my iOS application with Robot Framework and my setup was configured ...
Manu Antony's user avatar
0 votes
1 answer
714 views

I am trying to run cypress E2E test case(written in typescript) on BrowserStack. Library details:- "typescript": "~4.2.4", "cypress": "9.5.0", "...
Dheeraj kumar Rao's user avatar
3 votes
1 answer
926 views

browserstack has told me that i need to build my ios app in --profile mode, which is also true of your documentation the problem is that even if i build in --profile mode, they only way i can archive ...
Derek Hannah's user avatar
1 vote
3 answers
2k views

I upload my android test apk and my tests into BrowserStack through Azure Devops Pipelines. Once the tests are done, I need to know if the tests have passed or not. I use the "BrowserStack ...
Asue's user avatar
  • 1,541
0 votes
2 answers
606 views

I am creating a new Appium WebDriver session using WebdriverIO API: const options = {...}; const driver: Browser<"async">; try { driver = await remote(options); } catch (error) { ...
Andry's user avatar
  • 16.9k
0 votes
1 answer
1k views

I tried with CURL given in BrowserStack for mark tests as fail/pass. I have implemented the automation code with the robot framework in pycharm. I added the test status for each test case in my test ...
Kasun Ishanka Yapa's user avatar
2 votes
0 answers
687 views

How can I get realtime network calls in BrowserStack app-automate? There seem to be two options for me so far from what I have explored. Get network logs from BrowserStack. Issue: With this approach, ...
Optimus Prime's user avatar