internet-explorer

Selenium switching to new Tab in IE

风流意气都作罢 提交于 2020-02-07 08:38:04
问题 I am using selenium Java. I need to open new tab and open URL in the newly opened tab. I am try to using getWindowHandles, its working fine in google chrome, but the same code is not working for Internet Explorer. Please suggest the proper solution for this. Here is the code I have used. WebDriver=new InternetExplorerDriver(); driver.get("https://google/com"); driver.findElement(By.cssSelector("body")).sendKeys(Keys.CONTROL+"t");// Open new tab driver.switchTo().window(driver.getWindowHandles

Windows 10 Internet Explorer is not working with old VBA code

烂漫一生 提交于 2020-02-07 02:27:12
问题 I wrote code in VBA a couple years ago to open a website in IE and fill in textboxes with data from an excel file. Unfortunately I am using windows 10 now and this program is not working anymore. It opens the website with no problem, but cannot transpose the data into the textboxes. It simply opens the website and stalls (no data is entered). The program still works in IE in windows 7, without any problem. I tried multiple laptops with windows 10 and the problem reoccurs. I honestly don't

Bootstrap invalid-tooltip not working correctly on IE

自闭症网瘾萝莉.ら 提交于 2020-02-06 16:16:25
问题 Funny IE-compatibility issue I have just experienced. I have a code like that: <div class="row d-flex justify-content-around"> <div class="col-sm-12 col-md-4 px-3"> <div class="input-group mb-3"> <div class="input-group-prepend"> <span class="input-group-text" id="basic-addon1">{% trans 'Some string' %}</span> </div> {{ base_form_key.ss }} <div class="invalid-tooltip"> {% trans 'Enter a correct value or leave this field empty. x and y cannot be the same!' %} </div> </div> </div> </div> That

Bootstrap invalid-tooltip not working correctly on IE

瘦欲@ 提交于 2020-02-06 16:16:10
问题 Funny IE-compatibility issue I have just experienced. I have a code like that: <div class="row d-flex justify-content-around"> <div class="col-sm-12 col-md-4 px-3"> <div class="input-group mb-3"> <div class="input-group-prepend"> <span class="input-group-text" id="basic-addon1">{% trans 'Some string' %}</span> </div> {{ base_form_key.ss }} <div class="invalid-tooltip"> {% trans 'Enter a correct value or leave this field empty. x and y cannot be the same!' %} </div> </div> </div> </div> That

Floating a DIV right causes elements to wrap in IE7

徘徊边缘 提交于 2020-02-06 08:08:31
问题 I'm having a problem with floating a container to the right in IE7. Everything looks fine in IE8+, Firefox, Chrome, and Safari but the elements within the container wrap for some reason in IE7. I've set up a fiddle at http://jsfiddle.net/aagC9/. The problem I'm seeing is visible in the IE7 Browser Mode/Document Mode found in IE9 (it's also in IE7 on XP but I figured this would be easier for people to check out). While it seems like many people have run into similar problems, their solutions

Floating a DIV right causes elements to wrap in IE7

那年仲夏 提交于 2020-02-06 08:07:17
问题 I'm having a problem with floating a container to the right in IE7. Everything looks fine in IE8+, Firefox, Chrome, and Safari but the elements within the container wrap for some reason in IE7. I've set up a fiddle at http://jsfiddle.net/aagC9/. The problem I'm seeing is visible in the IE7 Browser Mode/Document Mode found in IE9 (it's also in IE7 on XP but I figured this would be easier for people to check out). While it seems like many people have run into similar problems, their solutions

Floating a DIV right causes elements to wrap in IE7

主宰稳场 提交于 2020-02-06 08:06:36
问题 I'm having a problem with floating a container to the right in IE7. Everything looks fine in IE8+, Firefox, Chrome, and Safari but the elements within the container wrap for some reason in IE7. I've set up a fiddle at http://jsfiddle.net/aagC9/. The problem I'm seeing is visible in the IE7 Browser Mode/Document Mode found in IE9 (it's also in IE7 on XP but I figured this would be easier for people to check out). While it seems like many people have run into similar problems, their solutions

Selenium performance with InternetExplorerDriver and IE11

点点圈 提交于 2020-02-06 07:58:35
问题 I am facing a very slow response when running my scripts on IE11. Sometimes, I get FocusWindowsClosed , ElementIsNotClickable . I have changed the zoom settings for all zones, created feature BFCACHE for IE in feature control, added capabilities into my code but nothing works for me. If anyone has any idea why I am facing this issue. Do i need to downgrade window or IE versions? I have also downloaded the same version of selenium client server with same IEDriver which is (3.8.0). 回答1: To

Selenium performance with InternetExplorerDriver and IE11

喜夏-厌秋 提交于 2020-02-06 07:58:09
问题 I am facing a very slow response when running my scripts on IE11. Sometimes, I get FocusWindowsClosed , ElementIsNotClickable . I have changed the zoom settings for all zones, created feature BFCACHE for IE in feature control, added capabilities into my code but nothing works for me. If anyone has any idea why I am facing this issue. Do i need to downgrade window or IE versions? I have also downloaded the same version of selenium client server with same IEDriver which is (3.8.0). 回答1: To

Get cookies from another domain in IE

醉酒当歌 提交于 2020-02-06 07:34:41
问题 I've got the following: User clicks on a link mydomain.com/redirect.php where gets a cookie (for mydomain.com) via setcookie function and then goes to another page ( header('Location: ...'); ) - say lp.html Then, on that page there is a script: gs('mydomain.com/getcookie.php', 'client=52', function() {}); and this function is as follows: gs = function(path, args, fn) { var p = document.head || document.getElementsByTagName("head")[0] var s = document.createElement("script"); p.appendChild(s);