Android : Can Selenium Test App For Mobile Safari And Droid Browser?

Aug 6, 2010

I need to test, with Selenium or a similar automated testing tool, how my webapp behaves on iPhone's Mobile Safari and on Android browser. How can I do that?

I usually test my app by hand setting Safari 5 with User Agent = "Mobile Safari", I used iPhoney as well but it's too buggy IMO.

Android : Can Selenium test app for Mobile Safari and droid browser?


Android : Jquery - Test For A Mobile Browser?

Aug 13, 2010

How do you test for, for example, and android browser in Jquery?

View 2 Replies View Related

Android : IPhone / Droid Swipe Detection For Mobile Browser

Jun 30, 2010

Is it possible to detect that the viewport is being dragged by a touch event?

Using the following code I am able to get the position of where the finger touched the screen, what node started the event and where it was dragged to. Which solves one of the problems but I would really like to detect when the user has dragged the page/window/viewport down.

To attempt to be more clear as to what I am trying to do: I would like simulate the refresh activity in Tweetie 2/Twitter for iPhone but in HTML5 and JavaScript. Code....

View 2 Replies View Related

Android :: Signed Up To Test Out Skyfire Browser

Apr 12, 2010

I signed up to test out the Skyfire browser for android and was not chosen. Has anyone been accepted? If so, how is it? Can you post a video? Upload the apk?

View 1 Replies View Related

Android :: Field Test Mode On A Mobile Phone

Oct 23, 2009

After searching the groups and posts, i could not find a suitable answer to my question - On a Android mobile phone, where can i find the Field Test Mode/Application so that i can see cellular network information? On other mobile phone platforms, you can enter a number key sequence and a Field test mode is launched providing cellular network information e.g cell ID, signal strength. Does anyone have any suggestions on how i can acquire/activate Field Test Mode please?

View 2 Replies View Related

Media :: Test Our Free Mobile TV Site

Mar 16, 2010

Yamgo just launched a new Mobile TV and video site which gives free access to live TV channels and video clips. The service works on iPhone, iPod and about 90% of mobile phones. We would really appreciate it if you could test the service and give us some feedback on how well it worked for you and what phone / network you were using. This will help us to improve the service and bring you more free mobile TV.Please go to Watch live mobile TV channels on your mobile phone.Please note streaming is data intensive so make sure you either have a data plan on your phone or are using WiFi. Our platform will adapt to your network conditions from 2.5G to WiFi. WiFi gives the best quality.We'll be launching 20 new live TV channel over the next couple of weeks and 6000+ new extreme sports videos.Many thanks in advance and enjoy the TV.

View 6 Replies View Related

Motorola Droid :: Get Browser To See Mobile Sites Instead Of Full Versions?

Jan 27, 2010

just bought my Droid on Sunday after the underwhelming Nexus One release. I'm using the Dolphin Browser and struggling to figure out how to get back to the mobile versions of sites. I know it was sending me to the mobile engadget site there at first, but lately I can only get to the full site. I'd really rather see the mobile one for loading time purposes. I remember on my Hero there was an option buried in the menu for this, but I can't find it on the Droid. Does it matter that I'm in Dolphin instead of the stock browser? And doesn't AndroidForums have a mobile version as well? Can't seem to get to that either.

View 3 Replies View Related

Motorola Droid :: Mobile Version Of ESPN's Website Gets Cut Off On Browser

Dec 23, 2009

Has anyone else noticed that the text on the mobile version of ESPN's website gets cut off on the Droid's browser? I feel like this is a relatively recent change, but I really couldn't say for sure.

View 1 Replies View Related

HTC Droid Eris :: Facebook In Browser (regular Version Not Mobile Site)

Dec 11, 2009

Is it possible to open the regular Facebook page in the browser? I am almost able to log in to it, but then it asks me for my birthday because I'm not browsing from a "familiar location". So I select my correct birth date from the drop-down menus, but the Login button stays grayed out for some reason and I can't go any further. Has anyone else had any success?My reason for wanting this is so I can access the actual Notifications page. The way I currently have it set up, I get an e-mail notification in Gmail. Then when I click the link in the e-mail for whatever update it's supposed to take me to, it just takes me to the homepage of Facebook Mobile. Then sometimes it won't even list the New Notifications link. This makes it very inconvenient if I want to go find where to reply to a comment or something. I have to know exactly where it is, which is difficult if it's not recent.

View 5 Replies View Related

Motorola Droid X :: Touchscreen Test - Drawing Lines Test

Jul 15, 2010

One more video about the fancy touchscreen of the Droid X. This one has happier results! Check it out at the link below.Droid X Touchscreen Test See you later. you'll know why this post is short when you read the blog. running downstairs!

View 5 Replies View Related

General :: Safari On Android 4 Shown As Device On FB?

Mar 4, 2013

When i go to my security on Facebook and check the current sessions, sometimes it shows a device called safari on Android 4. Could this possibly be my nexus 7 tablet? But that usually is called Android for Android 4 as the device. Is there an impostor?

View 2 Replies View Related

General :: IOS7 Style Safari For Android?

Oct 5, 2013

The main features i'm looking for are the swipe to go forward/back and the computer style tab system.Are there any android browser apps that have these features?

View 1 Replies View Related

HTC EVO 4G :: Chicago - Doesn't Work At All Browser Speed Test Nothing Registers An Internet Connection

Jul 26, 2010

I never had a problem until today and now my evo is having trouble connecting in places it used to work great in. And when it does connect, it (a) either doesn't work at all (browser, speed test, nothing registers an internet connection) or (b) works for a minute, then (a) happens. I have an allegedly "good" 4g signal too. Tried soft reset and battery pulling, hoping that the problem will go away before resorting to a factory reset...

View 49 Replies View Related

Android :: How To Integrate IPhone Safari Like View In Phone?

Mar 24, 2010

I want to implement IPhone safari like view in Android. The scrolling can be done using Gallery I think. But how to minimize the views as done in the IPhone Safari. The Android Browser also have minimized view, can anyone tell me how to implement it?

View 8 Replies View Related

Android :: Way To Integrate IPhone Safari Like View In Phone?

Mar 26, 2010

The main concept goes like this. I have four listviews with its own data loaded at the same time. Only one listview will be visible to the user. Now, when the user presses a button, not only the current
listview but also other three listviews should be minimized and then user can just scroll just as in Gallery and select the listview that one wants to open.

View 2 Replies View Related

Android :: Make Content Scroll Dynamically In DIV On Iphone's Safari Or Webkit?

Aug 13, 2010

for(var myLine = 0; myLine < 100; myLine++)
document.getElementById("myDiv").innerHTML += "line " + myLine + "<br>";
...............

<div style="position:...etc; overflow:auto;" id="myDiv"></div>

this works without a glitch in every browser on all non mobile platforms. However... when this is implemented on iPhone (Safari) or Android (webkit) the div gets filled up with the text but no scrollbar is generated when the text runs past the height of the div and the user can't "push" the content down either. So effectively overflow is always "hidden" no matter what. I'm curious if there's some alternative approach that I'm overlooking or if this is just a bug I have no way to get around at the moment.

View 3 Replies View Related

Android :: Mobile Sites On Browser

Sep 9, 2009

How do I keep the browser from sending me to watered down "mobile" sites instead of the full blown site. For example m.si.com instead of the full sports Ill site. a couple sites just starting converting me to mobile without me wanting it.

View 2 Replies View Related

Android :: Browser Redirected To Mobile Sites

Oct 14, 2009

OK so Android comes with this great web browser built in, but I've got a problem with it that is driving me nuts... there is no way to change the browser agent string so that it may be detected by websites as a full-featured browser and deliver desktop web page content rather than mobile browser content (You are redirected to ESPN's mobile site for example when browsing to www.espn.com). In Browser Settings I have Mobile view unchecked, but this does not affect being redirected to mobile content websites. I know some people probably prefer the mobile formatted content, but I wish it was at least an option so I could get to the true desktop version of a site if I wanted to.

View 3 Replies View Related

Android :: Mobile Browser Barcode Reader?

Apr 13, 2010

I placed this query on another board but no ones has been able to help so far. Anyone any idea if this exists or nor? Is there any way of reading a barcode from your mobile browser? I'm sure I'm missing something here. Every time I find a barcode while browsing on my phone I then have to open the same web page on a desktop / laptop so I can snap it with the barcode reader on my phone. I'm probably just being stupid but can I get my phone browser to read the barcode? Do any browsers offer this as a plugin?

View 2 Replies View Related

Android :: Mobile And Accessing Application Through Website In Browser

Jul 26, 2010

I have seen few apps having exact same UI when you access the app through stand alone app or through their mobile website. What are the pros and cons of both approaches while developing the app?

View 1 Replies View Related

Android :: Can Login To Twitter Via Mobile Browser But Not Through Peep

Sep 2, 2010

I can login to twitter via mobile browser but not through peep.

I keep getting invalid username or password.

I had the email from twitter about oAuth, is that the problem?

View 4 Replies View Related

Android :: How To Transfer Test Fixture File To Device From Unit Test Application?

Sep 24, 2010

I'm writing an Android JUnit test and want to copy/reset a test fixture file (it's an SQLite database file.) If I were within the main application, I know I could just place the file in the assets directory and use getResources().getAssets().open(sourceFile).However, this API appears to be unavailable from the ActivityInstrumentationTestCase2 class.Is there an easy way to copy a file over from the testing PC, or should I just keep a fresh copy of a test fixture on the device and copy it over a temporary file?

View 2 Replies View Related

Android :: Anyway To Get Javascript Error / Iphone Mobile Webkit Browser?

Feb 26, 2010

I have built a website for mobile webkit browsers, there is an interval update to refresh data. But it turns out that the pooling refresh will stop at some time after run for a while (some minutes or hours, different by each time).I thought there may be something error occurred in my refresh data functions, but it works well in my laptop browser. I also tried to listen window.onerror event, but webkit browser seems do not support that event. What else can I do?And I am also doubting is there any problem with setTimeout and setInterval functions in mobile webkit browser?

View 1 Replies View Related

Android : Can A Webpage On Mobile Browser Ask / Get Users Location From Phone?

Jun 25, 2010

Is there any way that a webpage can make a request for the users location from the android / iphone device ? Since all I need is the users location, I am trying to figure out if there is anyway I can bypass developing a native app and use some nifty html5 call to just get the users location so all a user would need to do is visit my webpage and provide permission to access his/her location?

View 2 Replies View Related

Android :: Error When Unit Test With Activity Instrumentation Test Cas­e 2?

Aug 23, 2009

I am using ActivityInstrumentationTestCase2 to do some test for an activity. I get a button in the setUp() method like this: protected void setUp() throws Exception {super.setUp(); act = getActivity(); btn = Button)act.find ViewById ( R.id.bike_button ); // this button has been defined in layout} Then I use this button to perform a click in a test method like this: public void testBikeButton(){ //click the bike button btn.performClick();}

View 7 Replies View Related

Android :: Incorrect Touch Events From Browser With Dashcode Mobile Projects

Jul 16, 2010

I'm developing an HTML/Javascript mobile web application using Dashcode. Normally I wouldn't use such WYSIWYG stuff, but I've found it a very rapid development process.

Unfortunately it seems like I can't get it to run on Android's browser currently. The main display loads and all the correct data is pulled from web services, but you cannot press on anything to activate it.

I suspect that the android browser is sending different javascript events, which the Dashcode objects are not configured to pick up.

In addition, the adb logcat debugger refuses to output any log messages from the browser on the emulator, and as such I'm having a very hard time sorting this out.

What events I need to be watching for, so I can iterate over all the touch handlers and duplicate them for the android events, or offer help in any other way on this situation?

View 2 Replies View Related

Android :: Dolphin Browser - Mobile Vs Regular/full HTML Site Option

Oct 21, 2010

With the Dolphin browser, is there a way to "force" a website to load as a FULL/normal/regular html website rather than as an m.site.com mobile website?

For example, when I try to navigate to eBay - New & used electronics, cars, apparel, collectibles, sporting goods & more at low prices I am ALWAYS redirected to m.ebay.com

Is this a setting within the Dolphin Browser or is this controlled by the website itself??

I looked through the settings and could not find a preference to chose between mobile and "full html" site options

View 2 Replies View Related

HTC Incredible : Switch From Mobile To Desktop In Browser?

Jul 26, 2010

I have only one or two sites I regularly visit that require the mobile version of the site to be rendered. It's too much of a pain to constantly go into settings and check and uncheck the mobile box. Is there a way to make this easier?

View 5 Replies View Related

Create App Which Redirects To Mobile Site In Browser

Mar 21, 2013

I would like to create a simple app which redirects to my mobile site in the browser. No further customization what so ever. I tried eclipse and failed, is there a simpler way?

View 6 Replies View Related

General :: HTML5 Supported Mobile Browser

Feb 29, 2012

i usually use Opera but its not working on the current ICS rom I'm using on my G2x, so in every ones eyes what's the best browser that supports Flash and HTML5 in your opinion and why, the current stock browser isn't cutting it for me.

View 4 Replies View Related







Copyrights 2005-15 www.BigResource.com, All rights reserved