forked from FluentLenium/FluentLenium
-
Notifications
You must be signed in to change notification settings - Fork 0
/
changelog
75 lines (75 loc) · 2.67 KB
/
changelog
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
v0.9.0
- update to selenium 2.33.0
- add cucumber jvm
- new fill for Select : fillSelect("#select").withValue("value-1") // withText // withId
- createPage is now accessible in child of FluentPage
v0.8.0
- fix @Page annotation available on another @Page
- adding new error message when trying to take a screenshot and driver doesn t support it
v0.7.9
- @Page annotation available on another @Page
- Adding @SharedDriver.SharedType.ONCE,@SharedDriver.SharedType.PER_METHOD,@SharedDriver.SharedType.PER_CLASS for junit and testng
- adding withClass filter
- moving to selenium 2.32.0
- adding containsWord filter
v0.7.8
- quit now do a check to avoid NPE
- package testng to fluentlenium-festassert
v0.7.7
-moving to selenium 2.31.0
v0.7.6
-moving to selenium 2.30.0
-don't package test dependencies
-Add support for @Page in test superclass
v0.7.5
-moving to selenium 2.29.0
v0.7.4
- moving to selenium 2.27.0
v0.7.3
- add getDefaultBasedUrl thanks to James Roper
-add withDefaultPageWait, withDefaultSearchWait, getDefaultConfig
v0.7.2
- moving to selenium 2.25.0
- add an html function to get underlying html content thanks to Guillaume Balaine and Cedric Gourlay
v0.7.1
- add a doubleClick feature
v0.7
- add the containsText feature when waiting
- add IsolatedTest
- add wait until page is loaded feature
- add wait until page is at feature
- make the api fluent, you can now chain methods
If you want to wait that the page you want is the page you are, you can use :
```java
await().atMost(5, TimeUnit.SECONDS).untilPage(myPage).isAt();
```
v0.6
- ISSUE-8 : find return a FluentList<FluentWebElement>
- ISSUE-26 : Polish pollingEvery features
- ISSUE-22 : Fix bug on hasAttribute
- ISSUE-21 : use @BeforeMethod instead of @BeforeTest
- Add methods on fest assert : hasText, hasNotText, hasSize
- ISSUE-28 : Add custom message when await fail
- add @AjaxElement : wait for element to be found on a page context
- add snapshot for junit
- update to selenium 2.21
v 0.5.5
- Adding eq ne le lt ge gt to the asynchronous api m thanks to Cecile Hui Bon Hoa and Khanh Tuong Maudoux
- Change on maven structure
- Adding first draft of the testNG extension
- Provide an adapter to simplify extension of the framework
v 0.5.4
- Migration to org.fluentlenium
- update to selenium 2.16.1
v 0.5.3
- fix bugs notStartsWith and notEndsWith
- deprecated the withXXX(Matcher) syntax. Use now withXXX().+convenientMethods
- add asynchronous call await
v 0.5.2 :
FluentLenium FestAssert :
- add page fest assert assertions
FluentLenium Core :
- no NPE if driver is null
- update to selenium java 2.12
- add automatic proxied instance on FluentWebElement inside a page
- moving matcher construction from FilterConstructor to MatcherConstructor