Coder Social home page Coder Social logo

Comments (3)

lefthandedgoat avatar lefthandedgoat commented on September 25, 2024

To do this I will probably need to created a new function called element that takes in a css selector and returns a selenium IWebElement.

This will allow you to access the properties on it and check for them. Then you could write a function that checks for say visiblity to be false, and pass that into waitFor

something like this

let loadDivToDisappear () =
(element "#loadingDiv").Visible = false

the function you define will need to be of signature unit -> bool
like the one above.

waitFor would take any function with this signature and execute it until it is true.

Will this work for you?

from canopy.

lefthandedgoat avatar lefthandedgoat commented on September 25, 2024

Will also add elements to return collections

from canopy.

lefthandedgoat avatar lefthandedgoat commented on September 25, 2024

Added! Thanks for the suggestion.

You can get it with package 0.2.5 from nuget

Here are the examples that I added into the basic test project.

wip (fun _ ->
describe "define a custom wait for using any function that takes in unit and returns bool"
let pageLoaded () =
(element "#wait_for").Text = "Done!"
!^ "http://localhost:4567/waitFor"
waitFor pageLoaded
"#wait_for" == "Done!")

wip (fun _ ->
describe "define a custom wait for using any function that takes in unit and returns bool, example using lists"
let fiveNumbersShown () =
(elements ".number").Count = 5
!^ "http://localhost:4567/waitFor"
waitFor fiveNumbersShown)

Simply define any function you like that takes in unit "()" and returns bool.

Pass that to the new function that you suggested 'waitFor' and it will wait until that function resolves true or a timeout has occurred. The timeout is based off the compareTimeout which is configurable.

Enjoy!

from canopy.

Related Issues (20)

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.