Aniket Singh Rawat

Results 13 issues of Aniket Singh Rawat

Fixes #2327 **Technical details** This PR adds an `allowPartialParse` flag to the `FormattedInput`. This flag prevents strings that are not formatted as they are incomplete. Incomplete date inputs are enabled...

pr-status: review

fixes: #1671 Just a simple check so that the version regex of setuptools > 66 is not empty. @ethanwhite

As imp module was deprecated in favour of importlib, it was breaking for python3.12 I tested it out and had to replace `imp.find_module` with `importlib.util.spec_from_file_location` and `imp.load_module` with `importlib.util.module_from_spec` Fixes...

Python version: 3.11.6 When building from source by following steps mentioned in README (https://github.com/weecology/retriever#to-install-from-source) ``` // after cloning and running pip install . -U ``` Trying to run `retriever ls`...

This PR fixes: #1660 As the other PR for this issue has been stale for quite some time, this one attempts to handle the network availablity issue. There is a...

@llaske in the **game of life** activity, it becomes very tedious to click at individual cells and enable them. What I propose is adding a click-and-drag functionality (much like using...

enhancement
to be release

### Description of the bug/issue Further chained commands in the new element API sends HTTP request even when preceding command has failed. sample test ``` describe('Ecosia.org Demo', function() { before(browser...

Fixes: #3899 Solved this issue by keeping a special flag for terminal commands. Instead of returning WebElement, if there was an error thrown by Selenium that is passed. Example Test:...

Fixes: #4079 Solves the third point from this comment (https://github.com/nightwatchjs/nightwatch/issues/3991#issuecomment-1969444042) > Further chained .find() commands should not throw the Timeout or any other error again. Ex. in browser.element('.invalid-selector').find('selector').getText();, there should...

Fixes: #3810 Earlier we used to throw the error if the element is not found by it's CSS selector. Here are few cases for `.expect.element().to.not.be.present test` here are some cases...