thirtyfour/extensions/query/element_query.rs
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 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801
use super::conditions::{handle_errors, negate};
use super::{conditions, ElementPollerNoWait, ElementPollerWithTimeout, IntoElementPoller};
use crate::error::WebDriverError;
use crate::prelude::WebDriverResult;
use crate::session::handle::SessionHandle;
use crate::{By, ElementPredicate, WebElement};
use std::time::Duration;
use stringmatch::Needle;
/// Get String containing comma-separated list of selectors used.
fn get_selector_summary(selectors: &[ElementSelector]) -> String {
let criteria: Vec<String> = selectors.iter().map(|s| s.by.to_string()).collect();
format!("[{}]", criteria.join(","))
}
/// Helper function to return the NoSuchElement error struct.
fn no_such_element(selectors: &[ElementSelector], description: &str) -> WebDriverError {
let element_description = if description.is_empty() {
String::from("Element(s)")
} else {
format!("'{}' element(s)", description)
};
WebDriverError::NoSuchElement(format!(
"{} not found using selectors: {}",
element_description,
get_selector_summary(selectors)
))
}
pub async fn filter_elements(
mut elements: Vec<WebElement>,
filters: &[ElementPredicate],
) -> WebDriverResult<Vec<WebElement>> {
for func in filters {
let tmp_elements = std::mem::take(&mut elements);
for element in tmp_elements {
if func(&element).await? {
elements.push(element);
}
}
if elements.is_empty() {
break;
}
}
Ok(elements)
}
/// An ElementSelector contains a selector method (By) as well as zero or more filters.
/// The filters will be applied to any elements matched by the selector.
/// Selectors and filters all run in full on every poll iteration.
pub struct ElementSelector {
pub by: By,
pub filters: Vec<ElementPredicate>,
}
impl ElementSelector {
pub fn new(by: By) -> Self {
Self {
by,
filters: Vec::new(),
}
}
/// Add the specified filter to the list of filters for this selector.
pub fn add_filter(&mut self, f: ElementPredicate) {
self.filters.push(f);
}
}
/// Elements can be queried from either a WebDriver or from a WebElement.
/// The command issued to the webdriver will differ depending on the source,
/// i.e. FindElement vs FindElementFromElement etc. but the ElementQuery
/// interface is the same for both.
pub enum ElementQuerySource {
Driver(SessionHandle),
Element(WebElement),
}
/// Options for wait characteristics for an element query.
#[derive(Debug, Clone)]
pub enum ElementQueryWaitOptions {
/// Use the default poller.
WaitDefault,
/// Use a poller with the specified timeout and interval.
Wait {
timeout: Duration,
interval: Duration,
},
/// Do not wait. This uses a poller that quits immediately.
NoWait,
}
impl Default for ElementQueryWaitOptions {
fn default() -> Self {
Self::WaitDefault
}
}
/// All options applicable to an ElementQuery.
///
/// These are stored in a separate struct so that they can be constructed
/// separately and applied to an ElementQuery in bulk if required.
#[derive(Debug, Default, Clone)]
#[non_exhaustive]
pub struct ElementQueryOptions {
ignore_errors: Option<bool>,
description: Option<String>,
wait: Option<ElementQueryWaitOptions>,
}
impl ElementQueryOptions {
/// Set whether to ignore errors when querying elements.
pub fn ignore_errors(mut self, ignore_errors: bool) -> Self {
self.ignore_errors = Some(ignore_errors);
self
}
/// Set whether to ignore errors when querying elements.
pub fn set_ignore_errors(mut self, ignore_errors: Option<bool>) -> Self {
self.ignore_errors = ignore_errors;
self
}
/// Set the description to be used in error messages for this element query.
pub fn description(mut self, description: impl Into<String>) -> Self {
self.description = Some(description.into());
self
}
/// Set the description to be used in error messages for this element query.
pub fn set_description<T: Into<String>>(mut self, description: Option<T>) -> Self {
self.description = description.map(|x| x.into());
self
}
/// Set the wait options for this element query.
pub fn wait(mut self, wait_option: ElementQueryWaitOptions) -> Self {
self.wait = Some(wait_option);
self
}
/// Set the wait options for this element query.
pub fn set_wait(mut self, wait_option: Option<ElementQueryWaitOptions>) -> Self {
self.wait = wait_option;
self
}
}
/// High-level interface for performing powerful element queries using a
/// builder pattern.
///
/// # Example:
/// ```no_run
/// # use thirtyfour::prelude::*;
/// # use thirtyfour::support::block_on;
/// #
/// # fn main() -> WebDriverResult<()> {
/// # block_on(async {
/// # let caps = DesiredCapabilities::chrome();
/// # let mut driver = WebDriver::new("http://localhost:4444", caps).await?;
/// # driver.goto("http://localhost:8000").await?;
/// // WebDriver::query() example.
/// let elem = driver.query(By::Css("div[data-section='section-buttons']")).first().await?;
/// // WebElement::query() example.
/// let elem_button = elem.query(By::Id("button1")).first().await?;
/// # assert_eq!(elem_button.tag_name().await?, "button");
/// # driver.quit().await?;
/// # Ok(())
/// # })
/// # }
/// ```
pub struct ElementQuery {
source: ElementQuerySource,
poller: Option<Box<dyn IntoElementPoller + Send + Sync>>,
selectors: Vec<ElementSelector>,
options: ElementQueryOptions,
}
impl ElementQuery {
fn new(source: ElementQuerySource, by: By) -> Self {
let selector = ElementSelector::new(by);
Self {
source,
poller: None,
selectors: vec![selector],
options: ElementQueryOptions::default(),
}
}
/// Provide the options to use with this query.
pub fn options(mut self, options: ElementQueryOptions) -> Self {
self.options = options;
// Apply wait options.
match self.options.wait {
None | Some(ElementQueryWaitOptions::WaitDefault) => self,
Some(ElementQueryWaitOptions::Wait {
timeout,
interval,
}) => self.wait(timeout, interval),
Some(ElementQueryWaitOptions::NoWait) => self.nowait(),
}
}
/// Provide a name that will be included in the error message if the query was not successful.
/// This is useful for providing more context about this particular query.
pub fn desc(mut self, description: &str) -> Self {
self.options = self.options.description(description);
self
}
/// By default a query will ignore any errors that occur while polling for the desired
/// element(s). However, this behaviour can be modified so that the waiter will return
/// early if an error is returned from thirtyfour.
pub fn ignore_errors(mut self, ignore: bool) -> Self {
self.options = self.options.ignore_errors(ignore);
self
}
//
// Poller / Waiter
//
/// Use the specified ElementPoller for this ElementQuery.
/// This will not affect the default ElementPoller used for other queries.
pub fn with_poller(mut self, poller: Box<dyn IntoElementPoller + Send + Sync>) -> Self {
self.poller = Some(poller);
self
}
/// Force this ElementQuery to wait for the specified timeout, polling once
/// after each interval. This will override the poller for this
/// ElementQuery only.
pub fn wait(self, timeout: Duration, interval: Duration) -> Self {
self.with_poller(Box::new(ElementPollerWithTimeout::new(timeout, interval)))
}
/// Force this ElementQuery to not wait for the specified condition(s).
/// This will override the poller for this ElementQuery only.
pub fn nowait(self) -> Self {
self.with_poller(Box::new(ElementPollerNoWait))
}
//
// Selectors
//
/// Add the specified selector to this ElementQuery. Callers should use
/// the `or()` method instead.
fn add_selector(mut self, selector: ElementSelector) -> Self {
self.selectors.push(selector);
self
}
/// Add a new selector to this ElementQuery. All conditions specified after
/// this selector (up until the next `or()` method) will apply to this
/// selector.
pub fn or(self, by: By) -> Self {
self.add_selector(ElementSelector::new(by))
}
//
// Retrievers
//
/// Return true if an element matches any selector, otherwise false.
pub async fn exists(&self) -> WebDriverResult<bool> {
let elements = self.run_poller(false).await?;
Ok(!elements.is_empty())
}
/// Return true if no element matches any selector, otherwise false.
pub async fn not_exists(&self) -> WebDriverResult<bool> {
let elements = self.run_poller(true).await?;
Ok(elements.is_empty())
}
/// Return the first WebElement that matches any selector (including filters).
///
/// Returns None if no elements match.
pub async fn first_opt(&self) -> WebDriverResult<Option<WebElement>> {
let elements = self.run_poller(false).await?;
Ok(elements.into_iter().next())
}
/// Return only the first WebElement that matches any selector (including filters).
///
/// Returns Err(WebDriverError::NoSuchElement) if no elements match.
pub async fn first(&self) -> WebDriverResult<WebElement> {
let mut elements = self.run_poller(false).await?;
if elements.is_empty() {
let desc: &str = self.options.description.as_deref().unwrap_or("");
let err = no_such_element(&self.selectors, desc);
Err(err)
} else {
Ok(elements.remove(0))
}
}
/// Return only a single WebElement that matches any selector (including filters).
///
/// This method requires that only one element was found, and will return
/// Err(WebDriverError::NoSuchElement) if the number of elements found was not
/// equal to 1.
pub async fn single(&self) -> WebDriverResult<WebElement> {
let mut elements = self.run_poller(false).await?;
if elements.len() == 1 {
Ok(elements.remove(0))
} else {
let desc: &str = self.options.description.as_deref().unwrap_or("");
let err = no_such_element(&self.selectors, desc);
Err(err)
}
}
/// Return all WebElements that match any one selector (including filters).
///
/// Returns an empty Vec if no elements match.
pub async fn all(&self) -> WebDriverResult<Vec<WebElement>> {
self.run_poller(false).await
}
/// Return all WebElements that match any one selector (including filters).
///
/// Returns Err(WebDriverError::NoSuchElement) if no elements match.
pub async fn all_required(&self) -> WebDriverResult<Vec<WebElement>> {
let elements = self.run_poller(false).await?;
if elements.is_empty() {
let desc: &str = self.options.description.as_deref().unwrap_or("");
Err(no_such_element(&self.selectors, desc))
} else {
Ok(elements)
}
}
//
// Helper Retrievers
//
/// Run the poller for this ElementQuery and return the Vec of WebElements matched.
/// NOTE: This function doesn't return a no_such_element error and the caller must handle it.
async fn run_poller(&self, inverted: bool) -> WebDriverResult<Vec<WebElement>> {
let desc: &str = self.options.description.as_deref().unwrap_or("");
let no_such_element_error = no_such_element(&self.selectors, desc);
if self.selectors.is_empty() {
return Err(no_such_element_error);
}
let check = |value: bool| {
if inverted {
!value
} else {
value
}
};
// Start the poller.
let mut poller = match &self.poller {
Some(p) => p.start(),
None => Box::new(ElementPollerWithTimeout::default()).start(),
};
loop {
for selector in &self.selectors {
let mut elements = match self.fetch_elements_from_source(selector.by.clone()).await
{
Ok(x) => x,
Err(WebDriverError::NoSuchElement(_)) => Vec::new(),
Err(e) => return Err(e),
};
if !elements.is_empty() {
elements = filter_elements(elements, &selector.filters).await?;
}
if check(!elements.is_empty()) {
return Ok(elements);
}
}
if !poller.tick().await {
return Ok(Vec::new());
}
}
}
/// Execute the specified selector and return any matched WebElements.
async fn fetch_elements_from_source(&self, by: By) -> WebDriverResult<Vec<WebElement>> {
match &self.source {
ElementQuerySource::Driver(driver) => driver.find_all(by).await,
ElementQuerySource::Element(element) => element.find_all(by).await,
}
}
//
// Filters
//
/// Add the specified ElementPredicate to the last selector.
pub fn with_filter(mut self, f: ElementPredicate) -> Self {
if let Some(selector) = self.selectors.last_mut() {
selector.add_filter(f);
}
self
}
//
// Advance selectors
//
/// Only match elements that are enabled.
pub fn and_enabled(self) -> Self {
let ignore_errors = self.options.ignore_errors.unwrap_or_default();
self.with_filter(conditions::element_is_enabled(ignore_errors))
}
/// Only match elements that are NOT enabled.
pub fn and_not_enabled(self) -> Self {
let ignore_errors = self.options.ignore_errors.unwrap_or_default();
self.with_filter(conditions::element_is_not_enabled(ignore_errors))
}
/// Only match elements that are selected.
pub fn and_selected(self) -> Self {
let ignore_errors = self.options.ignore_errors.unwrap_or_default();
self.with_filter(conditions::element_is_selected(ignore_errors))
}
/// Only match elements that are NOT selected.
pub fn and_not_selected(self) -> Self {
let ignore_errors = self.options.ignore_errors.unwrap_or_default();
self.with_filter(conditions::element_is_not_selected(ignore_errors))
}
/// Only match elements that are displayed.
pub fn and_displayed(self) -> Self {
let ignore_errors = self.options.ignore_errors.unwrap_or_default();
self.with_filter(conditions::element_is_displayed(ignore_errors))
}
/// Only match elements that are NOT displayed.
pub fn and_not_displayed(self) -> Self {
let ignore_errors = self.options.ignore_errors.unwrap_or_default();
self.with_filter(conditions::element_is_not_displayed(ignore_errors))
}
/// Only match elements that are clickable.
pub fn and_clickable(self) -> Self {
let ignore_errors = self.options.ignore_errors.unwrap_or_default();
self.with_filter(conditions::element_is_clickable(ignore_errors))
}
/// Only match elements that are NOT clickable.
pub fn and_not_clickable(self) -> Self {
let ignore_errors = self.options.ignore_errors.unwrap_or_default();
self.with_filter(conditions::element_is_not_clickable(ignore_errors))
}
//
// By alternative helper selectors
//
/// Only match elements that have the specified text.
/// See the `Needle` documentation for more details on text matching rules.
pub fn with_text<N>(self, text: N) -> Self
where
N: Needle + Clone + Send + Sync + 'static,
{
let ignore_errors = self.options.ignore_errors.unwrap_or_default();
self.with_filter(conditions::element_has_text(text, ignore_errors))
}
/// Only match elements that do not have the specified text.
/// See the `Needle` documentation for more details on text matching rules.
pub fn without_text<N>(self, text: N) -> Self
where
N: Needle + Clone + Send + Sync + 'static,
{
let ignore_errors = self.options.ignore_errors.unwrap_or_default();
self.with_filter(conditions::element_lacks_text(text, ignore_errors))
}
/// Only match elements that have the specified id.
/// See the `Needle` documentation for more details on text matching rules.
pub fn with_id<N>(self, id: N) -> Self
where
N: Needle + Clone + Send + Sync + 'static,
{
let ignore_errors = self.options.ignore_errors.unwrap_or_default();
self.with_filter(Box::new(move |elem| {
let id = id.clone();
Box::pin(async move {
match elem.id().await {
Ok(Some(x)) => Ok(id.is_match(&x)),
Ok(None) => Ok(false),
Err(e) => handle_errors(Err(e), ignore_errors),
}
})
}))
}
/// Only match elements that do not have the specified id.
/// See the `Needle` documentation for more details on text matching rules.
pub fn without_id<N>(self, id: N) -> Self
where
N: Needle + Clone + Send + Sync + 'static,
{
let ignore_errors = self.options.ignore_errors.unwrap_or_default();
self.with_filter(Box::new(move |elem| {
let id = id.clone();
Box::pin(async move {
match elem.id().await {
Ok(Some(x)) => Ok(!id.is_match(&x)),
Ok(None) => Ok(true),
Err(e) => handle_errors(Err(e), ignore_errors),
}
})
}))
}
/// Only match elements that contain the specified class name.
/// See the `Needle` documentation for more details on text matching rules.
pub fn with_class<N>(self, class_name: N) -> Self
where
N: Needle + Clone + Send + Sync + 'static,
{
let ignore_errors = self.options.ignore_errors.unwrap_or_default();
self.with_filter(conditions::element_has_class(class_name, ignore_errors))
}
/// Only match elements that do not contain the specified class name.
/// See the `Needle` documentation for more details on text matching rules.
pub fn without_class<N>(self, class_name: N) -> Self
where
N: Needle + Clone + Send + Sync + 'static,
{
let ignore_errors = self.options.ignore_errors.unwrap_or_default();
self.with_filter(conditions::element_lacks_class(class_name, ignore_errors))
}
/// Only match elements that have the specified tag.
/// See the `Needle` documentation for more details on text matching rules.
pub fn with_tag<N>(self, tag_name: N) -> Self
where
N: Needle + Clone + Send + Sync + 'static,
{
let ignore_errors = self.options.ignore_errors.unwrap_or_default();
self.with_filter(Box::new(move |elem| {
let tag_name = tag_name.clone();
Box::pin(async move {
handle_errors(elem.tag_name().await.map(|x| tag_name.is_match(&x)), ignore_errors)
})
}))
}
/// Only match elements that do not have the specified tag.
/// See the `Needle` documentation for more details on text matching rules.
pub fn without_tag<N>(self, tag_name: N) -> Self
where
N: Needle + Clone + Send + Sync + 'static,
{
let ignore_errors = self.options.ignore_errors.unwrap_or_default();
self.with_filter(Box::new(move |elem| {
let tag_name = tag_name.clone();
Box::pin(async move {
negate(elem.tag_name().await.map(|x| tag_name.is_match(&x)), ignore_errors)
})
}))
}
/// Only match elements that have the specified value.
/// See the `Needle` documentation for more details on text matching rules.
pub fn with_value<N>(self, value: N) -> Self
where
N: Needle + Clone + Send + Sync + 'static,
{
let ignore_errors = self.options.ignore_errors.unwrap_or_default();
self.with_filter(conditions::element_has_value(value, ignore_errors))
}
/// Only match elements that do not have the specified value.
/// See the `Needle` documentation for more details on text matching rules.
pub fn without_value<N>(self, value: N) -> Self
where
N: Needle + Clone + Send + Sync + 'static,
{
let ignore_errors = self.options.ignore_errors.unwrap_or_default();
self.with_filter(conditions::element_lacks_value(value, ignore_errors))
}
/// Only match elements that have the specified attribute with the specified value.
/// See the `Needle` documentation for more details on text matching rules.
pub fn with_attribute<S, N>(self, attribute_name: S, value: N) -> Self
where
S: Into<String>,
N: Needle + Clone + Send + Sync + 'static,
{
let ignore_errors = self.options.ignore_errors.unwrap_or_default();
self.with_filter(conditions::element_has_attribute(attribute_name, value, ignore_errors))
}
/// Only match elements that do not have the specified attribute with the specified value.
/// See the `Needle` documentation for more details on text matching rules.
pub fn without_attribute<S, N>(self, attribute_name: S, value: N) -> Self
where
S: Into<String>,
N: Needle + Clone + Send + Sync + 'static,
{
let ignore_errors = self.options.ignore_errors.unwrap_or_default();
self.with_filter(conditions::element_lacks_attribute(attribute_name, value, ignore_errors))
}
/// Only match elements that have all of the specified attributes with the specified values.
/// See the `Needle` documentation for more details on text matching rules.
pub fn with_attributes<S, N>(self, desired_attributes: &[(S, N)]) -> Self
where
S: Into<String> + Clone,
N: Needle + Clone + Send + Sync + 'static,
{
let ignore_errors = self.options.ignore_errors.unwrap_or_default();
self.with_filter(conditions::element_has_attributes(desired_attributes, ignore_errors))
}
/// Only match elements that do not have any of the specified attributes with the specified
/// values. See the `Needle` documentation for more details on text matching rules.
pub fn without_attributes<S, N>(self, desired_attributes: &[(S, N)]) -> Self
where
S: Into<String> + Clone,
N: Needle + Clone + Send + Sync + 'static,
{
let ignore_errors = self.options.ignore_errors.unwrap_or_default();
self.with_filter(conditions::element_lacks_attributes(desired_attributes, ignore_errors))
}
/// Only match elements that have the specified property with the specified value.
/// See the `Needle` documentation for more details on text matching rules.
pub fn with_property<S, N>(self, property_name: S, value: N) -> Self
where
S: Into<String>,
N: Needle + Clone + Send + Sync + 'static,
{
let ignore_errors = self.options.ignore_errors.unwrap_or_default();
self.with_filter(conditions::element_has_property(property_name, value, ignore_errors))
}
/// Only match elements that do not have the specified property with the specified value.
/// See the `Needle` documentation for more details on text matching rules.
pub fn without_property<S, N>(self, property_name: S, value: N) -> Self
where
S: Into<String>,
N: Needle + Clone + Send + Sync + 'static,
{
let ignore_errors = self.options.ignore_errors.unwrap_or_default();
self.with_filter(conditions::element_lacks_property(property_name, value, ignore_errors))
}
/// Only match elements that have all of the specified properties with the specified value.
/// See the `Needle` documentation for more details on text matching rules.
pub fn with_properties<S, N>(self, desired_properties: &[(S, N)]) -> Self
where
S: Into<String> + Clone,
N: Needle + Clone + Send + Sync + 'static,
{
let ignore_errors = self.options.ignore_errors.unwrap_or_default();
self.with_filter(conditions::element_has_properties(desired_properties, ignore_errors))
}
/// Only match elements that do not have any of the specified properties with the specified
/// value. See the `Needle` documentation for more details on text matching rules.
pub fn without_properties<S, N>(self, desired_properties: &[(S, N)]) -> Self
where
S: Into<String> + Clone,
N: Needle + Clone + Send + Sync + 'static,
{
let ignore_errors = self.options.ignore_errors.unwrap_or_default();
self.with_filter(conditions::element_lacks_properties(desired_properties, ignore_errors))
}
/// Only match elements that have the specified CSS property with the specified value.
/// See the `Needle` documentation for more details on text matching rules.
pub fn with_css_property<S, N>(self, css_property_name: S, value: N) -> Self
where
S: Into<String>,
N: Needle + Clone + Send + Sync + 'static,
{
let ignore_errors = self.options.ignore_errors.unwrap_or_default();
self.with_filter(conditions::element_has_css_property(
css_property_name,
value,
ignore_errors,
))
}
/// Only match elements that do not have the specified CSS property with the specified value.
/// See the `Needle` documentation for more details on text matching rules.
pub fn without_css_property<S, N>(self, css_property_name: S, value: N) -> Self
where
S: Into<String>,
N: Needle + Clone + Send + Sync + 'static,
{
let ignore_errors = self.options.ignore_errors.unwrap_or_default();
self.with_filter(conditions::element_lacks_css_property(
css_property_name,
value,
ignore_errors,
))
}
/// Only match elements that have all of the specified CSS properties with the
/// specified values.
/// See the `Needle` documentation for more details on text matching rules.
pub fn with_css_properties<S, N>(self, desired_css_properties: &[(S, N)]) -> Self
where
S: Into<String> + Clone,
N: Needle + Clone + Send + Sync + 'static,
{
let ignore_errors = self.options.ignore_errors.unwrap_or_default();
self.with_filter(conditions::element_has_css_properties(
desired_css_properties,
ignore_errors,
))
}
/// Only match elements that do not have any of the specified CSS properties with the
/// specified values.
/// See the `Needle` documentation for more details on text matching rules.
pub fn without_css_properties<S, N>(self, desired_css_properties: &[(S, N)]) -> Self
where
S: Into<String> + Clone,
N: Needle + Clone + Send + Sync + 'static,
{
let ignore_errors = self.options.ignore_errors.unwrap_or_default();
self.with_filter(conditions::element_lacks_css_properties(
desired_css_properties,
ignore_errors,
))
}
}
/// Trait for enabling the ElementQuery interface.
pub trait ElementQueryable {
fn query(&self, by: By) -> ElementQuery;
}
impl ElementQueryable for WebElement {
/// Return an ElementQuery instance for more executing powerful element queries.
///
/// This uses the builder pattern to construct queries that will return one or
/// more elements, depending on the method specified at the end of the chain.
///
/// See [`ElementQuery`] for more documentation.
fn query(&self, by: By) -> ElementQuery {
ElementQuery::new(ElementQuerySource::Element(self.clone()), by)
}
}
impl ElementQueryable for SessionHandle {
/// Return an ElementQuery instance for more executing powerful element queries.
///
/// This uses the builder pattern to construct queries that will return one or
/// more elements, depending on the method specified at the end of the chain.
///
/// See [`ElementQuery`] for more documentation.
fn query(&self, by: By) -> ElementQuery {
ElementQuery::new(ElementQuerySource::Driver(self.clone()), by)
}
}
#[cfg(test)]
/// This function checks if the public async methods implement Send. It is not intended to be executed.
async fn _test_is_send() -> WebDriverResult<()> {
use crate::prelude::*;
// Helper methods
fn is_send<T: Send>() {}
fn is_send_val<T: Send>(_val: &T) {}
// ElementSelector
let selector = ElementSelector::new(By::Css("div"));
is_send_val(&filter_elements(Vec::new(), &selector.filters));
// Pre values
let caps = DesiredCapabilities::chrome();
let driver = WebDriver::new("http://localhost:4444", caps).await?;
// ElementQuery
let query = driver.query(By::Css("div"));
is_send_val(&query.exists());
is_send_val(&query.not_exists());
is_send_val(&query.first());
is_send_val(&query.all());
is_send_val(&query.all_required());
Ok(())
}