viktorgogulenko
viktorgogulenko
I have the same bug as well. I had to modify my MobileElements to be the same as accessibility id in IOS app =) > > @AndroidFindBy(id = "com.ghm.free2move.wdc.integration:id/burgerIcon") >...
Hey, guys! Is it possible to launch Android emulators automatically before the test? As I know Appium java-client is able to launch it with cap like "avd" value: "AVD_name". Also...
@PingleSneha we had the same issue and successfully resolved it. Here our chrome config (in Protractor): ``` 'goog:chromeOptions': { prefs: { download: { prompt_for_download: false, directory_upgrade: true, default_directory: downloadsDirectory },...
@Mypaal7 Here is a snippet to be able to handle both scenarios: if tests are running on Selenoid side or using local browser: ``` async downloadFile(url, downloadDestinationPath) { await download(url,...
Just for clarification: ``` const address = await browser.getProcessedConfig().then(config => config.seleniumAddress); ``` ^^ here we are getting selenium address from protractor.conf.js file. In case of Selenoid, selenium address is something...
I have the same issue even with latest 12.8.1 version of Cypress - locally with Electron browser I'm making screenshots and when it runs on Docker environment in CI, tests...
> I found a workaround, and it does work which has made me very happy. > > All you need to do is run your tests in --headed and it...
I solved this issue with really great feature of Cypress - interceptor. Filename you can automatically grab from 'content-disposition' response header. Here is a code snippet: ```js // Prepare interceptor...
> > > > I solved this issue with really great feature of Cypress - interceptor. Filename you can automatically grab from 'content-disposition' response header. > > > > Here...
@chaitanyarajugithub please try to use `cy.intercept('**/api/v1.0/n/export/data?file_type=**').as('incidentReport');`