Selenium RC (java)+ Safari3 + XP - google-chrome

I am using seleniumRc 1.0.3 version this is fine..I am good with IE and Firefox..This is very good.. But i want to test in other browsers like "Safari and Chrome".
I am not able to execute my script with Safari and Chrome browsers..
In my script i am using https in the URl then whenever it url loading it should give alert (modelwiondow / popup some one caling like these) for authentication details ( username and password).
I am successfully done with firefox and IE i have done one step manually...that is fine...
But i want to do in safari also.. Can any one help me on this

Use one of the WebDriver extensions to test Safari and Chrome in Selenium:
WebKitDriver(Headless Webkit)
SafariDriver(Safari)
References
SafariDriver Internals

Related

Postman not working after updating Chrome

When I start Postman I see the icon appear in the Dock and in the Force Quit window, and I can click on the icon in the dock and Postman appears in the menu bar, with the single option "Quit Postman." So it's running, but the window doesn't appear. This morning I upgraded Chrome to 55.0.2883.95, Chromium to 58.0.2991.0, and Chrome Canary is at 58.0.2990.0.
Is there a way to switch Postman from Chrome to Chromium or Chrome Canary (i.e., to test Postman with different builds)? Or to revert Chrome to any older build? Or any other ideas to get Postman working?
The chrome addon for Postman will be depricated soon.
There are now fully functional standalone apps for Windows/Mac/Linux here. They work just as well as the Chrome addon and even have some additional features. I would suggest moving to the standalone apps.
In Chrome I googled "Postman," which took me to the Chrome App store, and the Postman page has a green button for "Launch App Now." That worked!
try disable and then enable the extension.
It worked for me.
Sometimes google chrome doesn't load it properly.
I had a nearly similar problem, where Chrome postman app (extension) fails to post/get/etc. It was unable to access the internet for some reason. After trying many solutions, it seems that the javascript setting in Chrome was causing it. You need to enable javascript in Chrome, restart Chrome, then the postman app will work.

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 window or perform sikuli interactions based on image like click in safari browser?
https://webkit.org/blog/6900/webdriver-support-in-safari-10/
Is this the popup you are seeing?
If so it may not yet be possible to use Sikuli against Safari 10+. The article linked above explains what is happening and why.
Did you remember to got into Develop and Allow Remote Automation?

Basic access authentication in Chrome url fails (http)

Since few days, I noticed an issue in url parsing in chrome that worked previously.
Indeed when using basic access authentification directly in url using a iframe or an anchor html tag, the final reached link is not correct.
For instance from the domain1.tld's page:
<iframe src="https://bob:thepasswd#domain2.tld"></iframe>
or
Test
will result in accessing the url
https://domain1.tld/https:/bob:thepasswd#domain2.tld
Please note that SSL certificates are valid and cross domain directive is set.
No message from debug console.
Chrome versions tested (under windows 10 x64):
52.0.2743.116 m does not work
53.0.2785.113 m does not work
55.0.2860.0 canary (64-bit) does not work
Firefox and Opera works correctly.
Am I missing something or is it a known issue? Not found more on the web.
However, many modern browsers no longer support this in links
INFO:

How to update chrome browser with latest build?

in my chrome browser when i see
chrome://chrome/
it shows the chrome browser is up to date , but when i open console in developer tools i cant able to use the latest chrome (36) javascript interpreter features like
Object.observe();
How to update this ?
Are you using Chrome beta channel? Object.observe() works in Chrome beta (36), you can also check chrome://version, mine is 36.0.1985.49

is there anyway to force a link to open up in IE, even if not the default browser

we have a website with links to a sharepoint. These features in sharepoint only work in IE so i dont want to open up firefox or chrome if that is the default browser. Is there anyway to have a
My Link
force open up in internet explorer ?
You can use javascript to inject the link in your HTML code if the client is IE, and maybe show a warning message if the browser isn't IE. Anyway you can't tell any browser to open a link using another browser.
No, definitely not.
For Firefox users, the best thing that comes to mind is to have them install the IE tab. It allows the opening of pages inside Firefox but using the IE engine - but also requires user action.
If this is run in a windows environment, you could use a PHP script to open Internet Explorer through PHPs support for COM objects.
If you are interested I can provide the script to do this.