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

164 questions
0
votes
1 answer

SafariDriver Selenium sendkeys doesn't work, adds random sign?

I'm using Selenium with Mink. I want to open a page in Safari and log in. For that I use /** * @When /^(?:i|I) fill in "([^"]*)" with value "([^"]*)"$/ */ public function iInputSomethingFormField($selector, $value) { $page =…
yeaitsme
  • 91
  • 9
0
votes
3 answers

Protractor safari redirect

I'm having trouble with safariDriver running tests with Protractor. everything works fine on chrome and phantom. so the problem is lets say i have a page i click on a link and it reroutes me to another page where it does something and then routes…
Chris Kim
  • 1
  • 1
0
votes
1 answer

Selenium: SafariDriver not opening in MacOSX Sierra

I have the latest Selenium, OSX and Safari versions but I'm unable to open Safari Driver using a code as simple as this: import org.openqa.selenium.WebDriver; import org.openqa.selenium.safari.SafariDriver; public class SafariDriverDemo { public…
KJTWF
  • 9
  • 8
0
votes
1 answer

selenium safari driver System.NotImplementedException

I am using selenium grid 3.3.1 on mac OS Sierra and run remotely commands from windows (using C# with selenium 3.3.1). When I tried to use ExpectedConditions.ElementToBeClickable I get the following exception: System.NotImplementedException was…
Hezi Israeli
  • 361
  • 2
  • 11
0
votes
1 answer

Getting "Error: ConnectFailure (Connection refused)" when running safaridriver using Safari Technology Preview

Due to the issue in detecting element visibility in the current version of Safari and safaridriver, as mentioned here, I attempted to launch our tests using Safari Technology Preview. The call is here: return new SafariDriver("/Applications/Safari…
champ12
  • 59
  • 8
0
votes
1 answer

Receiving "Unable to start the server: Permission denied" when attempting to manually start safaridriver on macOS

I am attempting to run safardriver from the /usr/bin folder. If I run the command without sudo, using /usr/bin/safaridriver -p 0, I am still prompted for a password. Entering my password or the admins password does not work. If i run the command…
champ12
  • 59
  • 8
0
votes
0 answers

Simulate mouse move on safari with protractor

I have a function to simulate mouse move with protractor 5.0.0, safari webdriver2.48. browser.actions() .mouseMove(this.getCanvas().getWebElement(), points[0]) .mouseDown() .mouseMove(this.getCanvas().getWebElement(), points[1]) .mouseUp() …
Tam Vo
  • 181
  • 2
  • 12
0
votes
1 answer

How to driven safari10 with selenium3.0 in a remote environment?

I have a selenium grid environment, i already start chrome in windows7, i want start up safari, how to config safari? Here is my code: DesiredCapabilities desiredCapabilities = DesiredCapabilities.safari(); WebDriver driver = new…
Dale
  • 171
  • 1
  • 1
  • 11
0
votes
1 answer

FluentWait Not Working Properly: Youtube Example

So I had it working earlier but I messed up something in my code and now the FluentWait method doesnt seem to call properly. If I run it using quickRun set to false it works as intended (because of the implicit) but when I set it to true it doesnt…
Potion
  • 440
  • 5
  • 18
0
votes
1 answer

Selenium explicit wait not working in new safariDriver 2.48.0

Explicit waits in my codes are not working in SafariDriver 2.48.0. it's working in chrome in windows and MAC. when wait is reached it's driver throwing exception File…
vishnu
  • 11
  • 3
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
  • 4,497
  • 1
  • 14
  • 32
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
  • 85
  • 7
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…
1 2 3
10
11