Any way to export recorded testsuite (Not testcase) from HTML to C# in Selenium [closed] - selenium

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
Currently Selenium IDE not supporting for Export Test suite as C# from HTML. Its time consuming by converting the test cases one by one manually. any body has any idea to handle this?

At the moment there isn't a mechanism to export test suites from IDE. No one has written one. I think that you will have to do each test and then create a Suite

Related

How to execute the BDD file without using a JUnit runner class file? [closed]

Closed. This question needs details or clarity. It is not currently accepting answers.
Want to improve this question? Add details and clarify the problem by editing this post.
Closed 1 year ago.
Improve this question
It is possible to run BDD feature file without using runner class? If yes, How?
I don’t think it is possible to use without runner class, unless you modify the way cucumber is called.
I created NoCodeBDD precisely for this reason. You don’t need any project set up or coding to automate BDDs. You can download a free version from www.nocodebdd.com/download. I would like to get some feedback from you and from the stackoverflow community

gRPC requests using Jmeter [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 2 years ago.
Improve this question
is there a way to test gRPC with Jmeter ?
I would like it in Jmeter since it will enable covering both functional and load with the same tool.
anyone with Jmeter plugin development experience that can help estimate the work and effort ?
Thanks
Ronen

How can we integrate saucelabs with using QAF automation framework? [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
I am using QAF automation framework for my automation project. I want to execute my test cases on saucelabs. can anyone help me out here?
Thanks,
Albert
You need use remote driver and to set following properties to point your execution on sauce labs.
remote.server=http://username:AccessKey#ondemand.saucelabs.com:80/wd/hub
remote.port=80
Provide appropriate driver capabilities. Refer [setting driver capabilities] documentation1.
Note: Make sure you are providing remote driver in driver name. for example
driver.name=firefoxRemoteDriver

Testing a web application? [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 8 years ago.
Improve this question
What are the test cases that can be used to test a web application?
test links
bench marking
any other suggestions?
The functions of the web application should be identified based on the specification and/or requirements (http://www.testingminded.com/2008/12/what-is-test-base.html). You can write test cases based on this function list. But there are a lot of ways to improve your tests... If you want to use a more sophisticated method, you can read about ISTQB, test planning and test desing. http://www.istqb.org/newsevents/news/2013/341-chapter-3-in-advanced-level-syllabus-2012-test-analyst-test-techniques.html
For webapp testing we use Selenium (http://docs.seleniumhq.org/) and JUnit (http://junit.org/).

applications of mutation 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
what are different applications of mutation testing?
Mutation testing is used to "test your test cases". The idea is to make small mutations to your application and then run your tests to make sure they catch the bugs added by these mutations.
There is a good explanation with examples posted here.