R
R
Roman2014-12-11 16:51:43
Angular
Roman, 2014-12-11 16:51:43

How to test an Angular app under IE8 and activeX?

Introduction
We are going to cut a project for one of the Ukrainian banks.
It was decided to make the front on AngularJS.
At the same time, there are requirements from the bank: this is support for the IE8 corporate browser (the latest version that can be installed under Windows XP)
And there is a security requirement: EDS and encryption are performed in the same IE8 using the activeX module.
Actually a question: My testing cried?
I can set up unit testing, run it with Karma and Chrome, and trust that everything will work the same in IE8.
What about e2e?
What about activeX?
My head is vaguely drawn images of a mock that will mimic the behavior of activeX
Share your thoughts on this topic

Answer the question

In order to leave comments, you need to log in

3 answer(s)
_
_ _, 2014-12-11
@AMar4enko

You can write mocks on an ActiveX component, I think.
IE8 is supported by Selenium, so you can test e2e with a protractor.

V
Vasily Chernenkov, 2018-09-26
@123581321345589

For me, this redirect option worked with an empty query string:

RewriteCond %{THE_REQUEST} ^[^\s]+\s+[^?]*?\?
RewriteCond %{QUERY_STRING} ^$
RewriteRule .? %{REQUEST_URI}? [R=301,L]

H
Host-Eiweb, 2017-05-17
@Host-Eiweb

RewriteEngine On
RewriteCond %{THE_REQUEST} ^[^\s]+\s+[^?]*?\?
RewriteCond %{QUERY_STRING} =""
# Для любых версий Apache:
RewriteRule .? %{REQUEST_URI}? [R=301,L]
# Для Apache 2.4+:
# RewriteRule .? %{REQUEST_URI} [R=301,L,QSD]

Didn't find what you were looking for?

Ask your question

Ask a Question

731 491 924 answers to any question