canopy is a web testing framework written in F#. And has the following key benefits: Solid stabilization layer built on top of Selenium. Quick to learn. Even if you've never done UI Automation, and don't know F#. Clean, concise API. MIT License
Questions tagged [canopy-web-testing]
37 questions
0
votes
0 answers
F# Canopy: Can a test be excluded from the report?
I am a beginner in f# canopy UI testing and I have one small problem:
I want to exclude one test from the report. I use LiveHtmlReporter and I do not want this test to be displayed in the final table. Is there a way to do this?

D. Janus
- 1
- 1
- 2
0
votes
0 answers
What are the advantages and disadvantages of Protractor and Canopy-web-testing?
I am looking for the best automation tool to automate my web application. So, can someone please tell me the advantages and disadvantages of above two tools?

Navnath Shinde
- 9
- 1
0
votes
2 answers
Click a Canopy WebElement
I have a button that I am retrieving with canopy like this...
let buttons = elements ".buttonClass"
The last button is the one I want to click, but when I do...
click buttons.tail
I get an error that says
"Can't click…

DotNetRussell
- 9,716
- 10
- 56
- 111
0
votes
1 answer
Trying to retrieve a class in a class using Canopy and F#
I'm trying to use canopy to use F# to play a game of Tic Tac Toe here. The "board" looks like the follow
<--- take note here

Luke Xu
- 2,302
- 3
- 19
- 43
0
votes
1 answer
F# canopy - how to use LiveHtmlReporter?
I am trying to get F# and canopy to log tests in html files.
So here it says that all I need to do is:
open configuration
open reporters
reporter <- new LiveHtmlReporter() :> IReporter
This didn't work for me. I managed to start the…

inzbartosz
- 21
- 2
- 7
0
votes
1 answer
returning variables F#(canopy) easiest way
member x.Logovani(window : string) =
let weburl = ref ""
let actwindow = ref ""
"Login" &&& fun _ ->
browser.SwitchTo().Window(window) |> ignore
weburl := currentUrl()
…

Allegon
- 60
- 1
- 9
0
votes
1 answer
Print HTML Title to the console window using F# + Canopy
I've utilized the following links for reference, but still cannot get my code to print the HTML
This is the title
Using Selenium Code with F# Canopy
http://lefthandedgoat.github.io/canopy/actions.html
The following 3 lines of code…

Brien Foss
- 3,336
- 3
- 21
- 31