Automated tests in a web site [closed] - automated-tests

Closed. This question needs to be more focused. It is not currently accepting answers.
Want to improve this question? Update the question so it focuses on one problem only by editing this post.
Closed 4 years ago.
Improve this question
I was studying automated testing in Python and I was wondering if there is a way to make automated tests in a website, checking if the appearance is equal to the initial design and checking if every button/link is working as expected.

One of the popular & free test automation framework is ROBOT Framework. I can suggest you to use this framework if you are looking for a most popular free one.
Refer to this link: http://robotframework.org
If you need to do test automation on GUI, then you need to do it with selenium. This is why ROBOT Framework is so popular because it contains many libraries and one of its powerful library is Selenium2Library. Refer below.
Refer to this link: http://robotframework.org/SeleniumLibrary/SeleniumLibrary.html
In ROBOT Framework, there are 'built-in' and 'collections' library that you can use to perform some arithmetic, comparison operations.
There is a robotframework tag/group in this stack overflow for you to check.

Related

R machine learning model deployment as webservice [closed]

Closed. This question needs to be more focused. It is not currently accepting answers.
Want to improve this question? Update the question so it focuses on one problem only by editing this post.
Closed 5 years ago.
Improve this question
Is there any way to deploy machine Learning model written in R language as a webservice, I know we have Flask in python and many more too, but didnt come across for any such library for R Machine learning code.
As others suggested, you can use R-Shiny to build an app which you can later deploy as a web service easily. Moreover, you can use html code inside shiny so you can customise your layout to your heart's content. If you are using RStudio (which I definitely encourage if you don't), you only need to select File > New File > Shiny Web App... Have a look at documentation and examples here.
However, if you only want to create a compact and fast web service without having to build a layout etc, I would suggest you use R plumber library. This is a good solution if you don't need anything too fancy and also is easily implementable by adding decorators to your current code.
Hope this helps!

Should you use log4net for small to mid-sized projects? [closed]

Closed. This question is opinion-based. It is not currently accepting answers.
Want to improve this question? Update the question so it can be answered with facts and citations by editing this post.
Closed 7 years ago.
Improve this question
I just got introduced to log4net and its abilities. For starters I'm currently working on a small project. We need to log errors,warnings etc to a file and also send an email to all developers involved about any Fatal errors. Is log4net an overkill for a small project thats got about 10 classes that require the logging functions? Are there any benefits of using log4net in the long run? We were initially going to just use FileIO manipulations and Mail functions to achieve the same.
The answer on this question is primarily opinion-based, some reasons to use a logging framework from the start:
Standard way of logging
Easy configuration
Small projects will grow, if you do it right from the start, there is no later rework needed
Using a logging framework will not cost you more time than writing your own. It will probably safe time. For example log4net will never crash your program when logging fails. Your own framework might interact with your business logic and gives you unexpected results.

What could be the different approach for web based and windows based product testing? [closed]

Closed. This question needs to be more focused. It is not currently accepting answers.
Want to improve this question? Update the question so it focuses on one problem only by editing this post.
Closed 8 years ago.
Improve this question
If i am testing windows based project and my documentation is according to windows based and suddenly i have to migrate my windows based project into web based project according to need.
What different approach should i follow if i have all the documentation and test strategy for windows based project ?
Is there any change in test cases and test strategy?
Can i have few suggestion regarding this, what should i change and what different approach i need to bring in my testing.
I am changing my windows based project online examination into web based project.
I have some suggestion.
Well U have to perform Usability testing, Security testing , Browser compatibility testing.
U have to also check temporary data storage whenever your site lost connection with server.
Hi Perform load testing on your application and security testing. Also test this on mobile browsers.

How to make exactly Acceptance Criteria and Acceptance Testing in Spring MVC project? [closed]

Closed. This question is opinion-based. It is not currently accepting answers.
Want to improve this question? Update the question so it can be answered with facts and citations by editing this post.
Closed 5 years ago.
Improve this question
How would you go about introducing acceptance tests into a team using the Spring MVC framework? What tools are available for this purpose?How would I make Acceptance criteria as a QA?
Thanks!
There are several Acceptance Test Automation Framework available.
They allow you to easily define your Acceptance Tests (which is unambiguous and Verifiable).
They can be easily/automatically triggered to run all your defined Acceptance Tests.
These easy to implement framworks also support you to pursue Acceptance Test Driven Development (ATDD); thus checking on QA.
If acceptance tests are very well defined and exhaustive they can easily be used to check regressions with very little effort.
Few of such Acceptance Test Automation Framework are as follows :
FitNesse
Robot Framework
Selenium can also be used for acceptance test.
StoryTeller
There are many others which lets you achieve the goal. :)

How are builds deployed into QA->Staging->Production for ASP.NET Web Applications? [closed]

Closed. This question needs to be more focused. It is not currently accepting answers.
Want to improve this question? Update the question so it focuses on one problem only by editing this post.
Closed 6 years ago.
Improve this question
Secondary questions are
How do we best utilize SCM in the build process?
How are code files labed and branched?
Should we the .csproj and .sln files for build? How flexible are these when deploying to several environments? I know these are msbuild files. But
as we add new files, this can become a bottlenect of updating and maintaining these .csproj files in SCM.
How is rollback done in case of failed builds that QA missed testing etc,etc.,
Are there any good articles on the build process?
This is more a question on the process and less on the choice of automated build tools. Please share your build process. I would like to get an end-to-end view
from developers checking-in to Going Live.
Continuous Integration: Improving Software Quality and Reducing Risk
http://www.amazon.com/gp/product/0321336380
book's website is here:
http://www.integratebutton.com

Resources