Questions tagged [safaridriver]

`SafariDriver` is implemented as a Safari browser extension. The driver inverts the traditional client/server relationship and communicates with the `WebDriver` client using `WebSockets`

Safari 10 onwards Safari 10+ comes with bundled Safari WebDriver

Pre Safari 10 SafariDriver is implemented as a Safari browser extension. The driver inverts the traditional client/server relationship and communicates with the WebDriver client using WebSockets

169 questions
0
votes
0 answers

SafariDriver on Safari10 cannot find nested iframe

My test works fine on chromedriver and IEServerDriver. But it doesn't work on safaridriver which comes with Safari10 (/usr/bin/safaridriver). On SafariDriver, it can find the 1st and the 2nd level iframes. But it cannot find the 3rd level iframe…
Buaban
  • 5,029
  • 1
  • 17
  • 33
0
votes
2 answers

How to use sikuli with latest apple safari driver

i am using sikuli along with selenium ... with latest selenium 3.0.1 safaridriver, user interations are disabled and it throws popup window "This safari window is remotely controlled by an automated test". Any idea on how to disable that pop-up…
vinod
  • 101
  • 8
0
votes
1 answer

Selenium Automation on Safari Browser , javascript:onClick event is not working on Safari browser

Below is my setup for automation on Safari Browser for an internal web Application. selenium-safari-driver-2.53.0.jar added Safari Web Driver extension 2.48.0 Am able to launch my application successfully , but am stuck on calling a javascript…
0
votes
2 answers

Context menu isn't opened using Safari WebDriver

Unable to open context menu in Safari browser using SafariDriver Selenium. Getting following exceptions: org.openqa.selenium.WebDriverException: Unknown command: {"id":"az1mvyq9x4ly","name":"mouseMoveTo","parameters": …
0
votes
1 answer

Grid-Safari-Selenium is getting stuck on SafariDriver Launcher page[second Tab] by not closing it and NOT switching back to first Tab

Meta - OS: OSX El capitan Selenium Version: 2.53.0 Browser: Safari Browser Version: 9.1 SafariDriver version: 2.48.0 which is latest as per SeleniumHQ site. Expected Behavior - SafariDriver Launcher page/tab should get closed automatically and get…
0
votes
1 answer

In parallel execution, safari browser navigate to url with out login page automatically

I am using selenium web driver 2.48 and safari driver 2.48 and safari version 8.0.8 I am facing a problem on running my test execution in safari driver.The problem is "In parallel execution, if in one safari window,login is successfull, than in…
noor
  • 2,954
  • 2
  • 16
  • 29
0
votes
1 answer

safari driver facing issues in parallel execution

I am running my test cases in safari browser using selenium web driver. I am using 2.48 for safari and 2.48.2 for selenium web driver in java. I am facing some issue with safari browser. like below: 1. In single run, safari browser communicate with…
Eric Ipsum
  • 723
  • 3
  • 10
  • 24
0
votes
0 answers

webdriver on safari works well in debug mode, but could not work well when I run it

I test safari browser on Windows with Selenium Webdriver, when in debug mode, my script works well, but when I run it, it could not work well. Does anyone encounter this situation? public class JustForTestSafari { public WebDriver driver; …
Alex Bruce
  • 533
  • 2
  • 10
  • 23
0
votes
1 answer

text entered into textbox is not taking by safari browser in selenium webdriver for mac

Im using sendkeys to enter text into the text box in safari browser using selenium web driver in Mac OS. But when i try submit it it is giving error saying there is no text entered. but i can able to see the text in the textbox. Please provide me…
0
votes
1 answer

which version of safari driver is compatible with safari version 8.0.7

Which version of safari-driver is compatible with safari version 8.0.7. After upgrading to safari v8.0.7 browser from safari v7.1.8, when I ran my tests, several safari browser instances open up and my scripts fail. It was working fine before with…
Syed
  • 189
  • 1
  • 5
  • 11
0
votes
1 answer

How can I clear a text box field for safaridriver using webdriver?

How can I clear a text box field for safaridriver using webdriver? I used this below command which only works for chrome and Firefox but does not work for safari. driver.findElement(By.id("userEmail")).clear();
Mel
  • 23
  • 6
0
votes
0 answers

org.openqa.selenium.remote.UnreachableBrowserException on Selenium and Safari

I am trying to execute a few test scenarios on Safari-MAC using Selenium-2.4.0 and Cucumber. I have created the extension of Safari browser and used the following code: @Given("^Time (\\d+).$") public void Time_(int time) throws Throwable { …
Prasant
  • 105
  • 9
0
votes
1 answer

How to make two instance of selenium safaridriver?

How can i make two instance of selenium driver ?? i used these codes and i am having a problem. SafariDriver sf = new SafariDriver(); sf.Navigate().GoToUrl("http://marathonbet.com/"); SafariDriver sf2 = new…
sel
  • 31
  • 2
  • 5
0
votes
1 answer

Unable to run WebDriver tests in Safari

I'm trying to run the Webdriver tests in Safari. Although the browsers opens i'm seeing the message [ 0.007s] [safaridriver.client] Requesting connection at ws://localhost:48726... [ 2.513s] [safaridriver.client] Unable to establish a connection…
Anil
  • 89
  • 4
-1
votes
1 answer

Safaridriver could not launch because it is not configured correctly

Whenever my Test Scripts start to Run when I build my JOB in Jenkins, I get this error i.e. ERROR: safaridriver could not launch because it is not configured correctly or you need to authenticate. Re-run safaridriver(1) and pass the '--enable' flag…
1 2 3
11
12