Questions tagged [suite]

132 questions
3
votes
1 answer

React Suite (rsuitejs) CSS conflicts

(Beginner here) I have a react project created with create-react-app, in a module I am importing rsuite (v5) components and styles as following: import 'rsuite/dist/rsuite.min.css'; import { DateRangePicker, InputPicker } from 'rsuite'; but rsuite…
KThiseas
  • 31
  • 2
3
votes
1 answer

test suite python - webdriver

I'm new with python, and I'm trying to create my own test suite. The main pourpose is to execute the same test on different browser, that's why I used the variable browser, that is used within the test to call the webdriver. I have this: def…
ClaudioM
  • 1,418
  • 2
  • 16
  • 42
3
votes
1 answer

Organizing Scientific Data and Code - Experiments, Models, Simulation, Implementation

I am working on a robotics research project, and would like to know: Does anyone have suggestions for best practices when organizing scientific data and code? Does anyone know of existing scientific libraries with source that I could examine? Here…
2
votes
0 answers

Installshield suite project logging

Is there any way that the logging of Installshield suite setup.exe file can be automatic? I can create a batch file that does: Setup.exe /debuglog"C:\logpath\SomeLog.log" but I'd rather setup.exe do it on its own. Is it possible?
deckard cain
  • 497
  • 10
  • 24
2
votes
0 answers

"ImportError: No module named requests" In burp suite extension

I am using burp suite extension to intercept https requests and responses and trying to import requests module to do so but when adding the extension, burp raises error "ImportError: No module named requests" , but the module is installing and…
dusha
  • 21
  • 1
2
votes
1 answer

How to run JUnit5 suite using the @Suite annotation

I'm trying to figure this out for over a year now but I can't run JUnit5 suites unless I use the JUnit4 @RunWith annotation, which brings me some other issues. I'm trying to use the newer @Suite annotation instead but no matter what I try (name the…
Francislainy Campos
  • 3,462
  • 4
  • 33
  • 81
2
votes
3 answers

How to add Lombok (annotationProcessor type) dependency in test suites plugin in Gradle?

I have created a new test suite using jvm-test-suite plugin. I have added few implementation type dependencies and it was working fine, no error was coming. But I also want to add Lombok dependency in that test suite, I tried it with implementation…
Sukhbir
  • 553
  • 8
  • 23
2
votes
2 answers

How to make a Global Variable or Suite Variable as List in Robot Framework?

I am Trying to set a List variable that is accessible to all testcases in the suite and the value in the list should not be overwritten but new values should be appended each time. So that I can use the List variable at the end of the execution of…
2
votes
1 answer

JUnit5 Test Suite doesn't test all classes from a package

I've got a Suite class as follows: package test.suite; import org.junit.platform.runner.JUnitPlatform; import org.junit.platform.suite.api.SelectPackages; import org.junit.platform.suite.api.SuiteDisplayName; import…
Toni Nagy
  • 133
  • 2
  • 11
2
votes
1 answer

Specific tests from a Suite Category

Is it possible to run only some methods (not all) from a test case in Junit4 (Eclipse)? I have 2 test cases and I want to implement a test suite which contains all the methods from one test case (I did that by adding the @Category annotation to all…
xavier
  • 177
  • 3
  • 15
2
votes
2 answers

JUnit 4's @Suite, passing data, @Rule and deprecating @Before and @After

I'm working with some legacy test code which makes use of a TestSetup class to setup and teardown a server around a test suite of classes containing tests. I've converted the classes to use junit annotations and have attempted to use the @Suite and…
drekka
  • 20,957
  • 14
  • 79
  • 135
2
votes
0 answers

I want to use spring tool suite without internet connection

I can not access internet. After I've installed spring tool suite, it tries to access internet (I think spring boot) when I open the project popup menu, and then my Eclipse freezes. Is there any way to use spring suite without internet connection?
Hyuk Kim
  • 21
  • 3
2
votes
0 answers

Tests referenced by Gradle are run multiple times

When I am running a test using Gradle the test will run multiple times. Actually it is running the same amount of times as the number of suites covering that test. So when running: gradle test --tests com.mycompany.test.SomeTest The test will run 3…
Shay_t
  • 163
  • 1
  • 16
2
votes
1 answer

How to close my browser after each test in a suite for protractor?

I was trying to run my tests as a suite. There are three tests in a suite, how can I make my browser close after each test ? suites: { one: 'one.js', two: 'two.js', three: 'three.js' }; The problem is…
SUPARNA SOMAN
  • 2,311
  • 3
  • 19
  • 35
2
votes
1 answer

Configuring Burp Suite to intercept data between web browser and proxy server

I need to configure Burp Suite to intercept data between web browser and proxy server. The proxy server requires a basic authentication (Username & Password) while connecting for the first time in each session. I have tried the 'Redirect to host'…
Sreekanth
  • 23
  • 4
1
2
3
8 9