How do the best for Web Testing? [closed] - testing

It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, visit the help center.
Closed 9 years ago.
I have done to develop responsive website. Now, I want to test my website.
How do the best for test our website? For scope : cross-browser, cross-device, and other. I think its impossible to test one-by-one every browser or device, as far as you know the web browser are thousand and every operating system has different.
Please help to share any best method to me.
Thank you.

There is a tool where you can test your website for cross-browser issues.
http://www.browserstack.com/ will help you out in this. This will make you test your site in almost all kinds of browsers.

You need a testing service as provided by Browsershot : https://browshot.com/. You will be able to ask a screenshot of your website for many browsers / devices.
There is also http://browsershot.org but they don't seem to have service for mobile devices.

Related

developing app with windows8 for tablet,mobile,desktop [closed]

It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, visit the help center.
Closed 9 years ago.
I need develop an application for windows8 mobile,tablet,desktop.As i am fresh to mobile app i dont have any idea about this.Is there anyway to develop an application like this with single code or we have to write code seperatly for all three and how to add this app to the app store. please anyone help me with this problem.
Thanks in advance
Typically, we use stackoverflow to answer specific questions about code issues you're having. Despite this, please begin at some of the great instructional videos provided on Microsoft development centers (better known as MSDN). They have quick-launch tutorials and the link.

Postgresql and OSX [closed]

It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, visit the help center.
Closed 10 years ago.
I have a project that's in the design phase and looking at my options have decided on using Postgresql for the application backend because of licensing and features. I have searched around but I am unable to find any solid information on using Postgresql in Xcode or even with OSX applications. Could someone point me in the right direction any help would be greatly appreciated.
You have not given quite a lot of context.
On the application side there are quite a few pieces of software running under OS X that interface with PostgreSQL, for example the standard GUI pgAdmin.
But I believe you're more concerned about the developers perspective. Probably the most common way is to use the libpq library that comes with PostgreSQL. It is well documented and rather stable. Integration into your software project should be straightforward.
If you are looking for an Objective-C framework, you could try out BaseTen. Never used that one, though.
If you want more specific help, you have to ask more specific questions.

What is the Ultimate web bot platform? [closed]

It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, visit the help center.
Closed 11 years ago.
I want to make a web bot (desktop application not web application) which sends HTTP requests and POST data to different web pages.
What is the best solution to do such bot?
What language and IDE to use?
Witch libraries to install... etc.
Depends on what expirience you are having.
Basicaly sending HTTP-Requests with post data should be pretty easy in most modern languages.
Personally I would use C#/.net and Visual Studio. The .net-FW has everything built in to aquire that task (e.g. this example).
But if you are expireinced in PHP, Java or similar use that and just search for the suitable methods.

Web service: Ruby on Rails versus WCF [closed]

It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, visit the help center.
Closed 11 years ago.
I would like to setup a web service, to be accessed via a mobile device. The main purpose of the server is data storage. I would like to know some of your opinions on the advantages\disadvantages between RoR and WCF for building the server-side of the web service.
I think you're looking at this the wrong way. What does the web service do?
The fact that it's a web service a mobile device talks to is itself not a big deal. Lots of stuff exists to do that. WCF is pretty good at it. I don't know anything about RoR but it probably is too.
So once the mobile device makes a request, what's going to happen on the server? Who is building it, and what languages/frameworks do they already know? What if any infrastructure is already in place?
If you can answer those questions, I think the answer to your question will become more apparent. :)

Can anybody explain the structure of the Apache server? [closed]

It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, visit the help center.
Closed 11 years ago.
How does the Apache web server work? Can someone explain it in detail?
Start with the Apache architecture overview to understand the basic components and data flows for Apache. Then, you probably want to go into the developer documentation, as the list module configuration options in the docs is not too helpful in understanding how does everything work.
Finally, comparing Apache to other popular open-source servers such as Lighttpd would show you what tasks are approached in a similar way by different programs, and where there are trade-offs (speed vs. features, for example) that differentiate between the servers.
It's magic. Don't even bother trying understand it.