mk868
mk868
Hello, When I try to install the package using the command: > python setup.py install I get an error: > Traceback (most recent call last): > File "setup.py", line 21,...
In this PR: - Tests migrated from JUnit4 to JUnit5 - Dependencies updated
After recent changes in Github CI to make it work with Maven, it seems that building with Ant is no longer necessary. In this PR I'm removing mentions about Ant
### **User description** ### Description In this PR I'm adding NullAway nullness analyzer to the project. By default NullAway plugin is disabled, to enable them set `//java:nullaway_level` flag: - `--//java:nullaway_level=WARN`...
### **User description** ### Description In this PR I'm adding nullness annotations for interfaces: - `WrapsDriver` - `WrapsElement` None of the methods in these wrappers can return a null value...
### **User description** ### Description In this PR I'm adding nullness annotations for interfaces and classes: - `Capabilities` - `HasCapabilities` - `ImmutableCapabilities` - `MutableCapabilities` - `PersistentCapabilities` #### `Capabilities` - `getPlatformName()`...
### **User description** ### Description In this PR I'm adding nullness annotations for classes - `Dimension` - `Keys` - `Point` - `Rectangle` - `UsernameAndPassword` #### `Dimension` - `equals` accepts null...
### **User description** ### Description In this PR I'm adding nullness annotations for classes - `By` - `ByIdOrName` - `ByAll` - `ByChained` #### Common - `boolean equals(Object o)` - accepts...
### Feature and motivation I suggest adding JSpecify Nullness annotations to the Selenium framework code. These annotations allow you to specify which parameters and return values can be null. I'm...
The `TableAssert` currently contains `isEmpty()` assertion, but no `isNotEmpty()`. I want to extend this to be like other collection assertions. #### Check List: * Unit tests : YES * Javadoc...