Giter Site home page Giter Site logo

dotnetseleniumextras's Introduction

DotNetSeleniumExtras

Extra utilities for use with the Selenium .NET language bindings.

This repository is a migration of code from the Selenium project's .NET bindings. It consists of the PageFactory implementation and the ExpectedConditions classes from the Selenium.Support library.

THIS REPOSITORY WILL NOT ACCEPT ISSUES OR PULL REQUESTS UNTIL A NEW OWNER IS FOUND

The code has been extracted here to preserve it for users, to provide a place for users to continue to use the existing implementations when the impelementations are removed from the Selenium project. It is hoped that this repo will serve as a starting point for a community-based implementation of the projects herein, at which point, this repo will no longer be necessary.

dotnetseleniumextras's People

Contributors

jimevans avatar

Stargazers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

Watchers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

dotnetseleniumextras's Issues

SelectElement is missing in this

When using this new library instead of the Selenium Support to use migrated ExpectedConditions, the SelectElement is missing in this library. I can use both libraries for now, but it is forcing me to work around by explicitly declaring which ExpectedCondition to use. Is there a plan to include SelectElement as well?

Tests are failing

EnvironmentManager is missing files
Missing selenium/common/src/web/ folder
All tests with real browsers are failing.
@jimevans

Is this package here to last?

We are evaluating our options to upgrade to Selenium 4 in our company. Since PageFactory is been deprecated now, I came upon this package that could enable us to continue using Page factory elements. I just want to be sure if this package is there to stay before arriving at the decision.

SeleniumExtras.WaitHelpers.ExpectedConditions.ElementToBeClickable(IWebelement element) method will encounter a bug if there is a cover layer of loading over the element

Hi, just as title described,It is seems that if there is a cover layer of loading over the element(this element will be enabled and displayed at this time),the ElementToBeClickable method will throw a specified element cannot be clicked exception.

Append the source code about above method:
public static Func<IWebDriver, IWebElement> ElementToBeClickable( IWebElement element) { return (Func<IWebDriver, IWebElement>) (driver => { try { if (element != null && element.Displayed && element.Enabled) return element; return (IWebElement) null; } catch (StaleElementReferenceException ex) { return (IWebElement) null; } }); }

Create a Nuget package with references to the WebDriver 4

Hi,

Is it possible to create a new Nuget package with references to the Selenium WebDriver 4 ? They change the location of IWrapElement (not in Internal anymore) and using the current installed DotNetSeleniumExtras doesn't work anymore with new Selenium versions.

Thanks ! ;)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.