1
0
mirror of https://github.com/MontFerret/ferret.git synced 2024-12-14 11:23:02 +02:00
Commit Graph

128 Commits

Author SHA1 Message Date
3timeslazy
ae94075a42 add NewPairValueType 2019-10-21 20:11:47 +03:00
Tim Voronov
c3cdb48078
Merge branch 'master' into feature/issue_#286 2019-10-17 16:58:41 -04:00
Tim Voronov
95ed4ba18c Added a comment 2019-10-16 12:27:43 -04:00
3timeslazy
ad2ec2e817 build core.Functions with map 2019-10-15 21:06:48 +03:00
3timeslazy
55e82a9791 add Functions tests 2019-10-15 12:22:22 +03:00
3timeslazy
1a7240f738 add pointer receiver into all Functions methods 2019-10-15 12:04:04 +03:00
3timeslazy
83dc0d2811 make core.Functions a struct 2019-10-15 11:40:36 +03:00
3timeslazy
e5860934a4 move strings.ToUpper logic from code into core.Functions 2019-10-14 21:47:31 +03:00
Tim Voronov
c2e7315008 Improved error message 2019-10-11 21:30:42 -04:00
Tim Voronov
9e7998f9c8 Added params check before execution 2019-10-11 17:31:23 -04:00
Владимир Фетисов
3bb0ab183b pull master 2019-10-03 22:42:14 +03:00
Владимир Фетисов
d0f8b69241 handle Ptr kind 2019-09-30 20:42:05 +03:00
Tim Voronov
7af241bbdc Fixed linting issue 2019-09-07 02:02:25 -04:00
Tim Voronov
0a2fd478cd Improved path lookup 2019-09-07 01:47:58 -04:00
Tim Voronov
24370d8178
Refactored methods (#376)
* Refactored methods

* Fixed errors provided by go vet
2019-09-06 23:15:27 -04:00
Tim Voronov
2d645434d8
Externalized common timeout values (#371)
* Externalized common timeout values

* Updated go.sum
2019-09-05 12:17:22 -04:00
Tim Voronov
2a8135657d
Fixed access to a member property right after a function call (#368) 2019-09-01 16:01:03 -04:00
3timeslazy
f87fe1e669 refactoring: .GetIn (#353)
* sync with MontFerret/ferret

* fix --param handling

When params is converted to map it uses strings.Split,
which slices a string into all substrings separated by :.

* implement GetIn for values.Object

* implement GetIn for values.Array

* rewrite GetIn because values.Object and values.Array implement core.Getter now

* fix bug when GetIn return nil instead of None

* add tests for Object and Array .GetIn

* add GetIn comment and remove 'len(byPath)' check

* fix GetIn comment
2019-08-20 22:00:15 -04:00
Tim Voronov
2997a9b264
Bugfix/logging (#346)
* Fixed inability to pass custom ID to th runtime logger

* Removed UUID module

* Removed redundant check
2019-08-02 23:28:25 -04:00
Tim Voronov
22382a0f61
Added namespace builder (#336)
* Added namespace builder

* Fixed linting issues

* Added extra check

* Updated e2e lib

* Renamed NamespaceBuilder to NamespaceContainer and changed func receivers

* Renamed NewLib to RegisterLib
2019-07-22 17:21:20 -04:00
Tim Voronov
63201148ac
Added possibility to set custom viewport size (#334)
* Added possibility to set custom viewport size

* Fixed linting issue

* Renamed ScreenSize to Viewport

* Updated e2e test
2019-07-17 13:29:16 -04:00
Tim Voronov
9756f0dc5a
Changed logic of iterator termination (#330) 2019-07-13 13:39:01 -04:00
Tim Voronov
cf43c7fdad
Feature/#293 regular exp operator (#326)
* Added Regexp operator

* Added simple type check

* Fixed linting issue
2019-07-09 14:19:53 -04:00
Tim Voronov
7ce6797e9c
Feature/#230 xpath (#322)
* Implemented XPath for CDP driver

* Added XPATH function

* Added e2e tests for CDP

* Fixed linting issues

* Added support of XPath to HTTP driver

* Fixed linting issues
2019-07-03 14:05:02 -04:00
Tim Voronov
d7b923e4c3
Feature/#220 iframe support (#315)
* Refactored Virtual DOM structure
* Added new E2E tests
* Updated E2E Test Runner
2019-06-19 17:58:56 -04:00
Tim Voronov
6933798419
Bugfix/#295 arithmetic operators (#298)
* Some work

* Updated Add operator

* Updated Subtract operator

* Updated Subtract operator tests

* Added tests for multiplication

* Added division

* Updated the rest of operators
2019-05-19 12:12:11 -04:00
3timeslazy
acf2f13dcb Linter Cleanups (#294)
* sync with MontFerret/ferret

* fix --param handling

When params is converted to map it uses strings.Split,
which slices a string into all substrings separated by :.

* remove impossible conditions nil != nil

* delete ineffectual assignments

* replace '+= 1' with '++'

* remove useless comparison with nil

* merge variable declarations

* remove bool comparison

* fix imports

* fix imports

* delete unused file

* use copy instead of loop

* delete unused DummyInterface

* remove unnecassary break statements

* tidy modules
2019-05-03 17:10:34 -04:00
3timeslazy
de703513e4 Linter Cleanup (#276)
* linter cleanup

* fix default case
2019-03-29 10:48:51 -04:00
Tim Voronov
37fb385ba4
Updated RAND function (#271)
* Updated RAND function

* renamed a func
2019-03-19 16:17:05 -04:00
Tim Voronov
71c246dd17
Feature/#236 cookies (#242)
* Added KeepCookies option to CDP driver

* Added LoadDocumentParams

* Added COOKIE_GET and COOKIE_SET methods
2019-03-15 19:59:05 -04:00
Tim Voronov
a2c4610fce Removed IteratorFn 2019-03-15 00:00:21 -04:00
Tim Voronov
32bfd4be3d Added IteratorFn 2019-03-14 22:33:22 -04:00
Tim Voronov
376ad77404
Feature/#250 wait style (#255)
* Added support for parsed styles

* Added stdlib function.

* Added e2e tests

* Added e2e tests for STYLE_* functions
2019-03-13 14:51:30 -04:00
Tim Voronov
b702f127ed
Fixed graceful process termination (#240) 2019-02-26 15:32:50 -05:00
Tim Voronov
14dd7ac40b
Fixed incorrect String.length (#238)
* Fixed incorrect String.length
2019-02-24 13:21:34 -05:00
Tim Voronov
eb523f01cc
Feature/#221 mouse events (#237)
* Initial work

* Added MoveMouseByXY and ScrollByXY

* Fixed liniting issues
2019-02-23 17:52:01 -05:00
Tim Voronov
34c8c02258
Refactoring/externalized html (#234)
* Externalized HTML drivers

* Fixed unit tests

* Updated logging

* Added support to set default driver

* Updated GetIn and SetIn helpers
2019-02-19 18:10:18 -05:00
Tim Voronov
f8e061cc80
Move value specific Iterable and Iterator interfaces into core module (#233)
* Move value specific Iterable and Iterator interfaces into core module

* Update Makefile

Reverted test command

* Update collection.go

* Fixed wrong iterator usage

* Updated use of switch statements
2019-02-15 07:41:08 -05:00
Tim Voronov
1af8b37a0f
New type system (#232)
* New type system

* Fixed dot notation for HTML elements
2019-02-13 12:31:18 -05:00
3timeslazy
b3bcbda3b9 rename functions Parse<Type>P -> MustParse<Type>. while dined (#231) 2019-02-12 18:01:49 -05:00
Tim Voronov
749cb8945d Fixed linting issues 2019-02-08 13:45:21 -05:00
Tim Voronov
e535f602d5 Added unit tests for Setter and Getter interfaces 2018-12-24 10:48:34 -05:00
Tim Voronov
5620be211c
Next (#214)
* Renamed DOCUMENT to PAGE

* Added PageLoadParams

* Added PageLoadParams

* Renamed LoadPageParams -> PageLoadParams

* Added support for context.Done() (#201)

* Bug/#189 operators precedence (#202)

* Fixed math operators precedence

* Fixed logical operators precedence

* Fixed array operator

* Added support for parentheses to enforce a different operator evaluation order

* Feature/#200 drivers (#209)

* Added new interfaces

* Renamed dynamic to cdp driver

* Renamed drivers

* Added ELEMENT_EXISTS function (#210)

* Renamed back PAGE to DOCUMENT (#211)

* Added Getter and Setter interfaces
2018-12-21 23:14:41 -05:00
Tim Voronov
a219e776ad
Switched from int to int64 (#188) 2018-11-30 19:31:08 -05:00
Tim Voronov
39e379f0f2
Decoupled runtime and HTML driver initialization (#198)
* Decoupled runtime and HTML driver initialization

* Updates
2018-11-30 19:30:55 -05:00
Tim Voronov
f5901e2226
Switched from 0.0.0.0 to 127.0.0.1 (#197) 2018-11-30 14:12:08 -05:00
Tim Voronov
dc3de71554
Bug/#194 empty value (#195)
* Fixes

* Fixed path to HTMLElement.value
2018-11-28 07:39:12 -05:00
Tim Voronov
1af1cc2486
Fixes (#187) 2018-11-21 22:45:00 -05:00
Tim Voronov
291d07cbef
Feature/custom iterator (#173)
* Added CollectionIterator interface

* Added PAGINATION function

* Fixed LIMIT clause

* Fixed linting issues
2018-11-12 19:58:12 -05:00
3timeslazy
64ca68d930 added DATE_ADD, DATE_SUBTRACT functions (#165) 2018-11-07 13:52:25 -05:00