32 questions
0
votes
0
answers
24
views
Detox - cannot find module android.cloud
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 ...
1
vote
0
answers
55
views
TestNG on Browserstack: WebDriverAgent errors when running large test group of more than 600 tests
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 ...
0
votes
1
answer
159
views
How to upload the build on Browser Stack (App-Automate & App Live) through Azure DevOps pipelines
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 ...
0
votes
0
answers
77
views
Android SnackBar getting stuck in UI tests (Browserstack)
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 ...
0
votes
1
answer
130
views
WebDriverException: Message: Error : Platform and Browser not valid
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 ...
1
vote
0
answers
71
views
Two browser stack sessions are triggering for a single test execution
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: ...
0
votes
1
answer
250
views
Programmatically modifying browserstack configuration file
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 ...
0
votes
0
answers
303
views
Compatibility Issue: Appium Integration with Selenium WebDriver 4.18.1 for iOS Testing on Browserstack App Automate
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. ...
0
votes
1
answer
191
views
Getting "Could not start a new session. Possible causes are invalid address of the remote server" on appium setup
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 = "...
1
vote
1
answer
236
views
Bitbucket Webhooks for running Appium tests
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 ...
0
votes
1
answer
375
views
VsTest is running all my tests and ignoring Test Category for Nunit Tests in the Azure Pipeline
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 ...
0
votes
1
answer
1k
views
My test cases are passing locally but getting unmarked on BrowserStack
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 ...
0
votes
2
answers
362
views
Selenium Actions moveToElement not working for browserstack iphone only
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 ...
1
vote
0
answers
461
views
Getting error "Connection with devtools was lost.Reconnecting now." on Browserstack
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 ...
0
votes
1
answer
132
views
Derive REST API from CURL command
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, ...
1
vote
1
answer
387
views
BrowserStack Local Testing + Cypress: local HTML file
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/...
0
votes
1
answer
919
views
Browserstack python sdk is throwing type error in init file of its own libary
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....
0
votes
0
answers
620
views
Browserstack with Playwright not logging all test runs / restarting browser
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 ...
0
votes
1
answer
135
views
Execution Error in BrowserStack after 50 minutes
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. ...
0
votes
1
answer
295
views
How to quit mobile driver session in parallel execution - testng in Browserstack
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 ...
1
vote
1
answer
249
views
How to scan multiple QR codes in IOS app using BrowserStack App Automate tool?
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 ...
1
vote
0
answers
124
views
BrowserStack - Fail Gradle command if UI tests fails
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 ...
0
votes
0
answers
844
views
BrowserStack in azure devops release 'build not found'
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:
...
1
vote
2
answers
1k
views
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. ...
1
vote
1
answer
675
views
How to integrate an Appium flutter driver automation suite(Java) with BrowserStack?
I have created an Appium flutter driver automation project(Java) and I need to integrate it with browser stack. Any support on it?
0
votes
1
answer
1k
views
How to quit appium test session using Robot Framework?
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 ...
0
votes
1
answer
714
views
Run Typescript + Cypress E2E tests over BrowserStack
I am trying to run cypress E2E test case(written in typescript) on BrowserStack.
Library details:-
"typescript": "~4.2.4",
"cypress": "9.5.0",
"...
3
votes
1
answer
926
views
Flutter ios appium wont launch app to run tests on browserstack
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 ...
1
vote
3
answers
2k
views
How to link BrowserStack results (App Automate) & Azure Devops Pipelines for Android
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 ...
0
votes
2
answers
606
views
Detect BROWSERSTACK_ALL_PARALLELS_IN_USE error when instantiating a driver with WebdriverIO
I am creating a new Appium WebDriver session using WebdriverIO API:
const options = {...};
const driver: Browser<"async">;
try {
driver = await remote(options);
} catch (error) {
...
0
votes
1
answer
1k
views
How to use Browserstack Automate API for mark test status in ROBOT Framework PyCharm
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 ...
2
votes
0
answers
687
views
How can I get realtime network calls in BrowserStack app-automate?
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, ...