54 questions
1 vote
0 answers
26 views
How we can run same feature file on multiple browser sequentially? [duplicate]
I am new to Karate Framework and I need to execute multiple scenarios from one feature file on chrome, msedge and firefox browser. After each scenario outline I am adding configuration type in Example,...
0 votes
1 answer
214 views
How to identify the failed driver from ITestResult listener when more than one browser are used in same test method
In case, if my test method is using multiple browsers / multiple drivers , how do we identify where exactly the failure happened? (ie.,in which browser?) For example, In a test, I launch two browsers ...
0 votes
1 answer
30 views
Tool take UI screenshots of different browsers and compare with a define base line
I'm looking for a tool that can provide me to identify UI changes on each regression round on multiple browsers. Please recommend the tools or a method to get the following. Take the screenshots of a ...
1 vote
1 answer
1k views
Python & Unittest open second browser, after first test have completed and test fails
Found many topics about this problem, but didn't find any easy described problem solving, so creating new topic with this problem and maybe will get much better answer to this problem. I have created ...
0 votes
0 answers
372 views
selenium grid not launching multiple browser instances
Hi I am using selenium grid 2 version 3.14.0 and I have given the command: java -Dwebdriver.chrome.driver="E:/BrowserDrivers/chromedriver.exe" -jar selenium-server-standalone-3.5.1.jar -port 7077 -...
0 votes
1 answer
706 views
Different browsers render the same code differently
In this application I am displaying a message in order to tell the user to use Google Chrome browser. I have tried this with multiple browsers but the result is different. I am using the below code ...
0 votes
0 answers
42 views
Why do browsers allow some global variables in the strict mode?
I cannot figure it out, why do some browsers allow the next code, and others do not: 'use strict'; (function() { Number = 1; toString = 1; valueOf = 1; })(); console.log(Number); console.log(...
2 votes
3 answers
10k views
Open multiple browsers in incognito / private mode via Powershell
I want to open a single URL with IE, CH and FF, using incognito/private mode. I can open the url with the 3 browsers using this Powershell script: Param( [string] $url ) [System.Diagnostics.Process]:...
3 votes
0 answers
2k views
How to set up a persistent shopping cart in woocommerce for Multiple Devices and Browsers?
How can we setup persistent shopping cart in woocommerce for different devices. Like if we login and add some products in cart and update cart then products in cart store in database and when I login ...
0 votes
1 answer
72 views
Correct Website Video Embed for all Browsers
I am using this code for embedding a video on my website (which I believe is best SEO practice). It is running a little slow on IE & Firefox. I have added the javascript (found on Stack) to make ...
0 votes
1 answer
912 views
'src' attribute inside html video tag
I want to use short video tag format like <video src="path" controls></video> And tutorial in w3school says: To make it work in all browsers - use <source> elements inside the &...
0 votes
1 answer
353 views
kendo-ui radial-gauge, at chrome, pointer not displayed
I have radial-gauge of kendo-ui. However, at chrome- the pointer is not displayed. (at IE it works well). What can be the reason? Here is my code: html: <div id="empRadial" data-bind="compose:...
1 vote
2 answers
1k views
Conditional execution of automation tests on different browsers
I want to execute a test on three browsers and I want a conditional execution of this test. Example - If browser name is chrome, go to Google.com and search for selenium testing. If browser name is ...
0 votes
1 answer
51 views
Connection to website cannot be established (randomly)
We manage this website: http://elearning.uem.mz It is from mozambique (hosted in Portugal), and we have a lot of complaints that the users can't connect to it. It seems to be a problem with the ...
0 votes
0 answers
38 views
Webkit Property Placement: CSS
.slideOutUp.ng-leave.ng-leave-active, .slideOutUp.ng-hide-add.ng-hide-add-active { -webkit-transform: translateY(-100%); transform: translateY(-100%); } This is the css property I ...