aboutsummaryrefslogtreecommitdiffstats
path: root/components/script/webdriver_handlers.rs
Commit message (Collapse)AuthorAgeFilesLines
...
* | Implement link and partial link text selectors for FindElement and related ↵George Roman2019-07-231-0/+101
| | | | | | | | WebDriver commands
* | Implement tag name selector for FindElementsFromElement WebDriver commandGeorge Roman2019-07-211-2/+24
| |
* | Implement tag name selector for FindElementFromElement WebDriver commandGeorge Roman2019-07-211-0/+20
| |
* | Implement tag name selector for FindElements WebDriver commandGeorge Roman2019-07-211-0/+19
| |
* | Implement tag name selector for FindElement WebDriver commandGeorge Roman2019-07-211-0/+19
|/
* Implement GetPageSource WebDriver commandGeorge Roman2019-06-171-0/+27
|
* Fix already borrowed error in webdriverGeorge Roman2019-06-101-30/+29
|
* Auto merge of #23171 - hundredeir:find_elem_elems, r=jdmbors-servo2019-05-191-0/+22
|\ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | add webdriver command "Find elements from Element" --- - [X] `./mach build -d` does not report any errors - [X] `./mach test-tidy` does not report any errors <!-- Either: --> - [ ] There are tests for these changes OR - [ ] These changes do not require tests because ___ <!-- Reviewable:start --> --- This change is [<img src="https://reviewable.io/review_button.svg" height="34" align="absmiddle" alt="Reviewable"/>](https://reviewable.io/reviews/servo/servo/23171) <!-- Reviewable:end -->
| * Formatted codehundredeir2019-04-071-4/+5
| |
| * Add webdriver command Find elements from elementhundredeir2019-04-061-0/+21
| |
* | Introduce ShadowIncluding enum for tree traversalsFernando Jiménez Moreno2019-04-261-2/+2
| |
* | Implement concept of shadow including tree orderFernando Jiménez Moreno2019-04-261-1/+1
| |
* | Add webdriver deletecookies functionaditj2019-04-191-1/+22
|/
* Implement WebDriver FindElementFromElement commandGeorge Roman2019-03-091-0/+17
|
* Rustfmt has changed its default style :/Simon Sapin2018-12-281-4/+4
|
* Update MPL license to https (part 3)Jan Andre Ikenmeyer2018-11-191-1/+1
|
* `cargo fix --edition-idioms`Simon Sapin2018-11-081-1/+1
|
* Reorder importsPyfisch2018-11-061-4/+8
|
* Format remaining filesPyfisch2018-11-061-13/+26
|
* Sort `use` statementsSimon Sapin2018-11-061-1/+1
|
* `cargo fix --edition`Simon Sapin2018-11-061-21/+21
|
* Update hyper to 0.12Bastien Orivel2018-11-011-1/+5
|
* Format script componentchansuke2018-09-191-235/+331
|
* Adapt Servo for mozjs 0.6 and the changes introduced in servo/rust-mozjs#393Marcin Mielniczuk2018-03-281-1/+2
|
* Rename Root<T> to DomRoot<T>Anthony Ramine2017-09-261-2/+2
| | | | | | | In a later PR, DomRoot<T> will become a type alias of Root<Dom<T>>, where Root<T> will be able to handle all the things that need to be rooted that have a stable traceable address that doesn't move for the whole lifetime of the root. Stay tuned.
* Rename dom::bindings::js to dom::bindings::rootAnthony Ramine2017-09-261-1/+1
|
* Replace downcast with isDarkDrek2017-08-021-1/+1
|
* Bump euclid to 0.14.Nicolas Silva2017-06-141-3/+1
|
* Webdriver uses browsing context ids rather than pipeline ids.Alan Jeffrey2017-05-251-7/+8
|
* Renamed constellation::Frame to constellation::BrowsingContext.Alan Jeffrey2017-05-151-4/+4
|
* Update Hyper and OpenSSLddh2017-03-311-11/+13
|
* Added some same-origin-domain checks.Alan Jeffrey2017-03-141-13/+8
|
* Refactor and simplify 'set cookies' operations on resource thread.Corey Farwell2016-12-151-5/+5
|
* Remove redundant url clonesPu Xingyu2016-11-181-5/+5
| | | | | They are now redundant since now document.url() returns a struct rather than a reference.
* Urlmageddon: Use refcounted urls more often.Emilio Cobos Álvarez2016-11-171-3/+3
|
* Replace script thread root browsing context by a collection of documents.Alan Jeffrey2016-11-081-99/+102
|
* Move JS evaluation functions to GlobalScopeAnthony Ramine2016-10-061-3/+2
|
* Introduce GlobalScope::resource_threadsAnthony Ramine2016-10-061-4/+4
|
* Introduce GlobalScope::pipeline_idAnthony Ramine2016-10-061-1/+2
|
* Replace ScriptHelpers by GlobalRef methodsAnthony Ramine2016-10-031-3/+5
|
* Use fn pipeline_id consistently, not fn pipelineAneesh Agrawal2016-09-131-1/+1
| | | | | | | | | | | | Consistently use the name 'pipeline_id' to refer to a function that returns an (optional) PipelineId. This was prompted by discovering both fn pipeline and fn pipeline_id doing the same job in htmliframeelement.rs. Note that there is fn pipeline in components/compositing/compositor.rs, but that actually returns an Option<&CompositionPipeline>, not any kind of PipelineId.
* Reorder `use` statementsUK9922016-09-091-2/+2
|
* Update rust-mozjs dependencyGuillaume Gomez2016-08-241-3/+10
|
* Update serde to 0.8 (fixes #12659)Anthony Ramine2016-08-121-2/+3
|
* Removed some sources of panic from script thread and devtools, using Option ↵David Raifaizen2016-07-251-4/+15
| | | | values instead to indicate when a pipeline context is missing where appropriate. Additionally, removed erroneous method get_browsing_context.
* Move webdriver_msg to script_traits.Ms2ger2016-07-051-2/+2
|
* Add style check, test, and code fixes for an else brace check.Travis Dean2016-07-041-2/+1
|
* Switch to using the new rooted!/RootedGuard API for rooting.Eduard Burtescu2016-07-041-4/+3
|
* Use common cookie struct add cookie webdriver cmdsDan Robertson2016-06-251-1/+66
| | | | | One cookie struct to rule them all. One struct to represent them. One cookie struct to bind them all, and through the IPC carry them.
* Support WindowProxy return values in bindingsJansen Jan2016-06-091-2/+1
| | | | unscopable