Questions tagged [selenium-edgedriver]

Selenium EdgeDriver is a WebDriver implementation that controls the Microsoft Edge browser using a MicrosoftWebDriver server.

168 questions
0
votes
1 answer

Selenium/Java/EdgeDriver: Modal window dialog box stops execution of test script

I'm currently writing a test script for our web application that tests uploading a profile picture image using Microsoft Edge and EdgeDriver. When I initialize the click operation for the add photo button the script stops executing altogether. I…
0
votes
0 answers

Can I write Selenium EdgeDriver tests on Windows 7 IDE

I am running Selenium WebDriver tests in the BrowserStack Automate grid. I am writing tests on a Windows 7 machine. I don't seem to be able to download and install the Edge WebDriver. All instructions seem to point to downloading and installing…
Mark Cooper
  • 6,738
  • 5
  • 54
  • 92
0
votes
0 answers

Robot mouseMove() not working with edge but working well with chrome and firefox

I have to do cross browser testing where need to test a scenario in chrome,Firefox and edge. Scenario is: I have to move the mouse to a web element and then move the element few pixel ahead and then release the element.I am using robot framework to…
0
votes
1 answer

Selenium contextClick() hangs on Edge browser

System.setProperty("webdriver.edge.driver","C:\\EdgeDriver\\" + "MicrosoftWebDriver.exe"); WebDriver driver = new EdgeDriver(); driver.navigate().to("http://www.google.com"); new…
0
votes
1 answer

Selenium Edge Browser extremely slow

I am using Selenium 3.0.0 on Java, I am working on Windows 10 machine OS build - 10586.753. I have to automate my website on Edge browser and I am facing extreme slowness. Below is my browser code: …
sunny
  • 1
  • 3
0
votes
1 answer

Why is driver.getPlaform() returning ANY for MicrosoftWebDriver for Edge in Windows 10?

DesiredCapabilities edge = new DesiredCapabilities(Browser.EDGE, "", Platform.Windows); RemoteWebDriver driver = RemoteWebDriver(remoteAddress,edge); System.out.println(driver.getCapabilities().getPlatform()); This prints the platform as ANY, even…
-1
votes
1 answer

Selenium EdgeDriver options

How do I integrate selenium webdriver Edge options into EdgeDriver in python? I tried to use: from selenium.webdriver.edge.options import Options # with from selenium.webdriver import Edge PS: I do not want to use another package like msedge :)
PicxyB
  • 596
  • 2
  • 8
  • 27
-1
votes
2 answers

How to use Python with Selenium to click the "Load More" button on "https://github.com/topics"?

I just need to click the load more button once to reveal a bunch more information so that I can scrape more HTML than what is loaded. The following "should" go to github.com/topics and find the one and only button element and click it one time. from…
-1
votes
1 answer

What do i put as a path when i didnt download anything

I am trying to test something with edge but when i wright the following code: from selenium import webdriver from selenium.webdriver.edge.service import Service service = Service(verbose = True) driver = webdriver.Edge(service = service) It gives…
-1
votes
1 answer

How to launch Microsoft Edge in IE mode using Selenium Java

I'm launch Microsoft Edge in IE mode using Selenium Java. Can someone help me with the required configuration settings?
-1
votes
3 answers

Click a button inside using Python Selenium

I am trying to click on download button. The HTML Code for the button is as below:
-1
votes
1 answer

Ms edge driver rejecting requests

context: i'm using robot framework + msedgedriver for e2e testing, my environment is docker in linux vm. So i can't run msedgedriver windows container in this vm. I decided to run ms edge driver on remote windows vm. Problem: in my windows server…
-1
votes
3 answers

Selenium InvalidArgumentException on opening webpage without protocol specified (http/https)

On Windows 10 (64bit, python3.6.8), I'm unable to open link via driver's get method in case link was filled without http:// or https:// protocol specified. I use selenium==3.141 and msedge-selenium-tools-3.141.2 with python. Microsoft Edge version…
-1
votes
1 answer

org.openqa.selenium.WebDriverException: unknown error: cannot find MSEdge binary error using EdgeDriver and Selenium on Mac through Java

I have trouble running MS Edge test on MAC using Selenium Remote web driver. I tried to set System property for edge binary as below: dc = DesiredCapabilities.edge(); System.setProperty("webdriver.edge.driver",…
-1
votes
3 answers

selenium.common.exceptions.WebDriverException: Message: Unknown error while trying to use Edge and MicrosoftWebDriver.exe through Selenium

I created a script in Python, which scraps the Altium's website and gathers information regarding license usage. At this moment, I am using ChromeDriver, but I sometimes get errors due to the network being slow at different times of the day. I used…
1 2 3
11
12