Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
We don’t allow questions seeking recommendations for books, tools, software libraries, and more. You can edit the question so it can be answered with facts and citations.
Closed 6 years ago.
Improve this question
Has anyone tried using an automated test tool (like Chai or Selenium) that can be used to run automated test cases within NetSuite?
For example, I want to create an automated test case that would test if a Client Script was setting the correct values, etc.
TIA
We build our SuiteApp as an npm package that uses mocha with sinon. As much as possible, we try to isolate our business logic code from any NetSuite APIs, then we automate unit testing on the isolated logic. We use sinon to mock NetSuite APIs where we can't avoid them. We don't worry about testing the actual NetSuite API methods, as if those are broken, there's not a lot we can do to fix them anyway.
We tried Selenium several years ago (2013 maybe) for automated testing in the browser, but it could never seem to record the macros correctly and would always result in broken test suites. Perhaps both Selenium and the NetSuite DOM have improved since then; would certainly be worth investigating.
We have created an open source tool for unit testing suite scripts, it allows you to test your scripts outside of netsuite:
https://github.com/3EN-Cloud/netsumo
Related
Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
We don’t allow questions seeking recommendations for books, tools, software libraries, and more. You can edit the question so it can be answered with facts and citations.
Closed 1 year ago.
Improve this question
I have a project in which I have implemented hundreds of scrapy spiders.
Now I collided with the following problems:
time to time websites changes their DOM/API - so spider stop working or not all info collected
websites became unavailable or moved to another domain - spider stop working.
Since there are a lot of spiders it not easy to monitor the status of each spider.
is there any framework that provides the ability to monitor scrapy spiders?
status of running spider(s)
show when spider(s) stop working etc.
I have looked into scrapinghub/zyte but not sure if it good for our purpose because we need something that can be running locally.
Scrapydweb is basically just like Scrapinghub but you run it locally.
It can alert you when spiders fail with email/slack if I remember correct. It's a bit less user-friendly than scrapinghub since you have to manage servers and so on. But overall I think it was a good platform when I used it.
Airflow is a very handy platform for scheduling and monitoring.
Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
We don’t allow questions seeking recommendations for books, tools, software libraries, and more. You can edit the question so it can be answered with facts and citations.
Closed 11 months ago.
Improve this question
What is the best way to test a multiplayer network game in unity without build the app ?
It is something like in editor unity there is two editor which one is a copied editor. So we can login in one editor and login in second editor with different user. Is there a tool like this ?
Thanks
Dennis
Is there a tool like this ?
As far as i know, there is not.
What is the best way to test a multiplayer network game in unity
without build the app ?
When i test, I usually build the game, and then run another instance in the editor, on separate monitors. That should work like normal.
But you need one build. :/
If you are using the built in Unity Networking
Host from the editor
Connect the build as a client
Many issues can be resolved just by changing the host, and in these cases you don't have to rebuild.
That being said, don't forget to rebuild every now and again to be safe. And remember, sometimes you change things that you don't realize affect the client.
I would suggest ParallelSync for anything Unity 2018+, it's basically the closest successor to uecho. You can add it as a package in Unity and it will copy your project to a new folder and run however many instances you require.
https://github.com/VeriorPies/ParrelSync
Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
We don’t allow questions seeking recommendations for books, tools, software libraries, and more. You can edit the question so it can be answered with facts and citations.
Closed 7 years ago.
Improve this question
Having done a number of projects in python and node.js, I am missing an interactive interpreter/console in dart that those languages, as well as other like ruby, provide so nicely.
Tests, logging, debuggers, profilers are the instruments we use in application development while digging into issues or trying things out. But in scripting, in server side scripting, it is the interpreter that is the primary tool to try things out. Having experience from both, software development with a long list of languages and a number of scripting domains (python and bash for admin functions, node for http request evaluation, R for data analysis etc.), I fail to see how, if server side scripting is to be taken seriously, any language not providing an interpreter/console can hope for any sensible share of the pie.
Is dart not intended for scripting or am I just missing something obvious?
PS. There is (was) one project addressing the issue, but it did not see any development for the past 3 years: https://github.com/sam-mccall/dart-console
As far as I know the REPL for the Dart language was not originally planned by the development team. The discussion on the REPL took place back in 2012 with no real outcome:
Github: Dart needs a REPL
So the answer is, there exists no interactive interpreter/console for Dart and it does not look like there are any plans to create one.
Observaory, Dartium, and WebStorm debugger allow to interactively execute Dart code.
REPL for dartlang
Is there anyway to invoke a Dart REPL on a website, when using Dartium?
Is there an "Immediate Window" in the Dart Editor / Debugger?
Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
We don’t allow questions seeking recommendations for books, tools, software libraries, and more. You can edit the question so it can be answered with facts and citations.
Closed 7 years ago.
Improve this question
I'm writing a Qt application that uses a QWebView to host the UI. Similar to the ImageAnalyzer example in the Qt SDK samples.
I would like to test this UI using an automated method. A scripting interface like Selenium Web-Driver would be preferable.
Any recommendations/examples on how to do this?
Edit:
I'm looking for a solution can identify HTML elements via classes and id's so that it's maintainable and robust to change.
Tools like Sikuli (which are appearance based), don't satisfy this criterion. Note: I believe those are great for quick one-off scripting, they just don't work very well across many different platforms/configurations and over time for my purpose.
There is a WebDriver implementationfor Qt: https://github.com/cisco-open-source/qtwebdriver
Using Selenium tests and this WebDriver you can automate QtWebkit, widget and QML applications
So, I'm not sure this would satisfy your "Qt application that uses a QWebView" requirement, but when you say "I'm looking for a solution can identify HTML elements via classes and id's so that it's maintainable and robust to change." I can think of WatiR (which is a "browser driver").
It's open source so perhaps you could adapt it to drive your application.
There is also a .Net version called WatiN, but then you are restricted to Windows.
Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
We don’t allow questions seeking recommendations for books, tools, software libraries, and more. You can edit the question so it can be answered with facts and citations.
Closed 3 years ago.
Improve this question
Does anyone know of any good resources (books, articles, existing software, etc...) for learning how to implement A/B split testing in ASP.NET?
FairlyCertain is an AB Testing library for ASP.NET that's worth checking out. It drops seamlessly into your project and doesn't require any of the javascript voodoo that Google Website Optimizer uses (which kills your site's performance and SEO all in one shot).
I've been using it for a few of my projects for several months now with good success.
I have just written a short article describing a technique for doing split testing in ASP.Net MVC. You can check it out here
It will not take much work to make it work with traditional asp.net.
For anyone running into this post again, you may find this useful:
http://github.com/htayebi/AbTestMaster
It's an open source a/b testing framework for ASP.NET MVC which allows you to write the results either in sql database or csv file. You can download the nuget package or if interested, go through the code in github.
Google website optimizer?
http://www.google.com/websiteoptimizer/b/index.html
http://www.google.com/support/websiteoptimizer/bin/topic.py?hl=en&topic=14309
http://www.google.com/support/websiteoptimizer/bin/answer.py?hl=en&answer=71976
I suggest you use Display Modes to achieve A/B testing.
But Display Modes just support simple problems by default.
If you already implement Display Modes in some other scenario. You can consider DisplayModeMatrix (just google it). It helps you use Display Modes more efficiency.
https://www.nuget.org/packages/DisplayModeMatrix/
Wth Display Modes you can simply delete/rename views after A/B testing to clean up your project.