browser-testing Questions
6
Solved
I would like to launch a Google Chrome browser with language Spanish es using Puppeteer.
I've tried puppeteer.launch(args:['--lang=es',...],...) but it didn't work.
I've tried passing the environ...
Juggle asked 24/10, 2017 at 10:53
2
There is a list of recognized "capabilities" in Webdriver and "debuggerAddress" is among them.
But I can't find a way to set such option neither in Capabilities class not in Cro...
Itin asked 15/3, 2016 at 11:7
7
Solved
In puppeteer I would like to wait a defined time before going to the next line of code.
I've tried to put a setTimeout in an evaluate function but it seems to be simply ignored
console.log('before ...
Instrumentalist asked 24/10, 2017 at 19:55
3
Solved
I am new to Puppeteer and Node and I get this error when trying to execute the following code:
'use strict';
const puppeteer = require('puppeteer');
const evalLib = require('./oaa_a11y_evaluation...
Melanochroi asked 1/6, 2018 at 14:9
2
After reading the Cypress documentation on web security and when to disable it, I've decided I indeed need to do it. Is there a way to disable this just for one particular test/test suite? I'm usin...
Gassing asked 22/9, 2019 at 10:0
2
I have the following test, written in Cypress. I use VueJS with SSR support for my frontend.
My app it’s an SPA and I am testing the user click on a menu.
before(() => {
// mock data etc.
});
...
Twelvemonth asked 12/6, 2020 at 6:0
2
Solved
I'd like to test web sites in Mobile IE. I do not need or want Windows 8 loaded, just Windows Phone 8.
I understand I can run Windows Phone 8 Simulator inside a Windows 8 VM. That is not my ques...
Selfseeking asked 16/10, 2013 at 11:42
1
Solved
IE11 seems to be slightly different on Windows 7 to Windows 8(.1). I guess this is because some features are tied to the OS.
E.g. the IE11 on Windows 7 developer preview blog post briefly mentions...
Balf asked 26/9, 2013 at 13:8
1
Solved
I had the impression that Watin was no longer being maintained and asked to which framework would be the best to switch to for testing of a website in a browser from .net?
Gingham asked 15/11, 2012 at 14:24
3
Solved
When I develop web-based applications or websites, I need to test browser compatibility to make sure that every browsers like IE, Firefox, Opera, Chrome, and Safari display the expected result.
I...
Cryolite asked 23/3, 2011 at 5:58
2
Solved
What can I use to test websites I developed using HTML/CSS to see how it looks in mobile devices like iPhone/iPad/Android? Emulators/Simulators on Windows? I could installthe Android SDK and ...
Parttime asked 6/3, 2011 at 13:56
1
© 2022 - 2024 — McMap. All rights reserved.