.\" Automatically generated by Pod::Man 4.14 (Pod::Simple 3.43) .\" .\" Standard preamble: .\" ======================================================================== .de Sp \" Vertical space (when we can't use .PP) .if t .sp .5v .if n .sp .. .de Vb \" Begin verbatim text .ft CW .nf .ne \\$1 .. .de Ve \" End verbatim text .ft R .fi .. .\" Set up some character translations and predefined strings. \*(-- will .\" give an unbreakable dash, \*(PI will give pi, \*(L" will give a left .\" double quote, and \*(R" will give a right double quote. \*(C+ will .\" give a nicer C++. Capital omega is used to do unbreakable dashes and .\" therefore won't be available. \*(C` and \*(C' expand to `' in nroff, .\" nothing in troff, for use with C<>. .tr \(*W- .ds C+ C\v'-.1v'\h'-1p'\s-2+\h'-1p'+\s0\v'.1v'\h'-1p' .ie n \{\ . ds -- \(*W- . ds PI pi . if (\n(.H=4u)&(1m=24u) .ds -- \(*W\h'-12u'\(*W\h'-12u'-\" diablo 10 pitch . if (\n(.H=4u)&(1m=20u) .ds -- \(*W\h'-12u'\(*W\h'-8u'-\" diablo 12 pitch . ds L" "" . ds R" "" . ds C` "" . ds C' "" 'br\} .el\{\ . ds -- \|\(em\| . ds PI \(*p . ds L" `` . ds R" '' . ds C` . ds C' 'br\} .\" .\" Escape single quotes in literal strings from groff's Unicode transform. .ie \n(.g .ds Aq \(aq .el .ds Aq ' .\" .\" If the F register is >0, we'll generate index entries on stderr for .\" titles (.TH), headers (.SH), subsections (.SS), items (.Ip), and index .\" entries marked with X<> in POD. Of course, you'll have to process the .\" output yourself in some meaningful fashion. .\" .\" Avoid warning from groff about undefined register 'F'. .de IX .. .nr rF 0 .if \n(.g .if rF .nr rF 1 .if (\n(rF:(\n(.g==0)) \{\ . if \nF \{\ . de IX . tm Index:\\$1\t\\n%\t"\\$2" .. . if !\nF==2 \{\ . nr % 0 . nr F 2 . \} . \} .\} .rr rF .\" ======================================================================== .\" .IX Title "Firefox::Marionette::Element 3pm" .TH Firefox::Marionette::Element 3pm "2023-12-22" "perl v5.36.0" "User Contributed Perl Documentation" .\" For nroff, turn off justification. Always turn off hyphenation; it makes .\" way too many mistakes in technical documents. .if n .ad l .nh .SH "NAME" Firefox::Marionette::Element \- Represents a Firefox element retrieved using the Marionette protocol .SH "VERSION" .IX Header "VERSION" Version 1.35 .SH "SYNOPSIS" .IX Header "SYNOPSIS" .Vb 2 \& use Firefox::Marionette(); \& use v5.10; \& \& my $firefox = Firefox::Marionette\->new()\->go(\*(Aqhttps://metacpan.org/\*(Aq); \& \& my $element = $firefox\->find(\*(Aq//input[@id="metacpan_search\-input"]\*(Aq); \& \& $element\->type(\*(AqTest::More\*(Aq); .Ve .SH "DESCRIPTION" .IX Header "DESCRIPTION" This module handles the implementation of a Firefox Element using the Marionette protocol .SH "SUBROUTINES/METHODS" .IX Header "SUBROUTINES/METHODS" .SS "attribute" .IX Subsection "attribute" accepts a scalar name a parameter. It returns the initial value of the attribute with the supplied name. Compare with the current value returned by property method. .SS "browser" .IX Subsection "browser" returns the browser connected with the element. .SS "clear" .IX Subsection "clear" clears any user supplied input from the element .SS "click" .IX Subsection "click" sends a 'click' to the element. The browser will wait for any page load to complete or the session's page_load duration to elapse before returning, which, by default is 5 minutes. The click method is also used to choose an option in a select dropdown. .PP .Vb 1 \& use Firefox::Marionette(); \& \& my $firefox = Firefox::Marionette\->new(visible => 1)\->go(\*(Aqhttps://ebay.com\*(Aq); \& my $select = $firefox\->find_tag(\*(Aqselect\*(Aq); \& foreach my $option ($select\->find_tag(\*(Aqoption\*(Aq)) { \& if ($option\->property(\*(Aqvalue\*(Aq) == 58058) { # Computers/Tablets & Networking \& $option\->click(); \& } \& } .Ve .SS "css" .IX Subsection "css" accepts a scalar \s-1CSS\s0 property name as a parameter. It returns the value of the computed style for that property. .SS "find" .IX Subsection "find" accepts an xpath expression expression> as the first parameter and returns the first element that matches this expression. .PP This method is subject to the implicit timeout. .PP .Vb 2 \& use Firefox::Marionette(); \& use v5.10; \& \& my $firefox = Firefox::Marionette\->new()\->go(\*(Aqhttps://metacpan.org/\*(Aq); \& \& my $div = $firefox\->find_class(\*(Aqpage\-content\*(Aq); \& $div\->find(\*(Aq//input[@id="metacpan_search\-input"]\*(Aq)\->type(\*(AqTest::More\*(Aq); \& \& # OR in list context \& \& my $div = $firefox\->find_class(\*(Aqpage\-content\*(Aq); \& foreach my $element ($div\->find(\*(Aq//input[@id="metacpan_search\-input"]\*(Aq)) { \& $element\->type(\*(AqTest::More\*(Aq); \& } .Ve .PP If no elements are found, a not found exception will be thrown. For the same functionality that returns undef if no elements are found, see the has method. .SS "find_id" .IX Subsection "find_id" accepts an id as the first parameter and returns the first element with a matching 'id' property. .PP This method is subject to the implicit timeout. .PP .Vb 2 \& use Firefox::Marionette(); \& use v5.10; \& \& my $firefox = Firefox::Marionette\->new()\->go(\*(Aqhttps://metacpan.org/\*(Aq); \& \& my $div = $firefox\->find_class(\*(Aqpage\-content\*(Aq); \& $div\->find_id(\*(Aqmetacpan_search\-input\*(Aq)\->type(\*(AqTest::More\*(Aq); \& \& # OR in list context \& \& my $div = $firefox\->find_class(\*(Aqpage\-content\*(Aq); \& foreach my $element ($div\->find_id(\*(Aqmetacpan_search\-input\*(Aq)) { \& $element\->type(\*(AqTest::More\*(Aq); \& } .Ve .PP If no elements are found, a not found exception will be thrown. For the same functionality that returns undef if no elements are found, see the has_id method. .SS "find_name" .IX Subsection "find_name" This method returns the first element with a matching 'name' property. .PP This method is subject to the implicit timeout. .PP .Vb 2 \& use Firefox::Marionette(); \& use v5.10; \& \& my $firefox = Firefox::Marionette\->new()\->go(\*(Aqhttps://metacpan.org/\*(Aq); \& \& my $div = $firefox\->find_class(\*(Aqpage\-content\*(Aq); \& $div\->find_name(\*(Aqq\*(Aq)\->type(\*(AqTest::More\*(Aq); \& \& # OR in list context \& \& my $div = $firefox\->find_class(\*(Aqpage\-content\*(Aq); \& foreach my $element ($div\->find_name(\*(Aqq\*(Aq)) { \& $element\->type(\*(AqTest::More\*(Aq); \& } .Ve .PP If no elements are found, a not found exception will be thrown. For the same functionality that returns undef if no elements are found, see the has_name method. .SS "find_class" .IX Subsection "find_class" accepts a class name as the first parameter and returns the first element with a matching 'class' property. .PP This method is subject to the implicit timeout. .PP .Vb 2 \& use Firefox::Marionette(); \& use v5.10; \& \& my $firefox = Firefox::Marionette\->new()\->go(\*(Aqhttps://metacpan.org/\*(Aq); \& \& my $div = $firefox\->find_class(\*(Aqpage\-content\*(Aq); \& $div\->find_class(\*(Aqform\-control home\-metacpan_search\-input\*(Aq)\->type(\*(AqTest::More\*(Aq); \& \& # OR in list context \& \& my $div = $firefox\->find_class(\*(Aqpage\-content\*(Aq); \& foreach my $element ($div\->find_class(\*(Aqform\-control home\-metacpan_search\-input\*(Aq)) { \& $element\->type(\*(AqTest::More\*(Aq); \& } .Ve .PP If no elements are found, a not found exception will be thrown. For the same functionality that returns undef if no elements are found, see the has_class method. .SS "find_selector" .IX Subsection "find_selector" accepts a \s-1CSS\s0 Selector as the first parameter and returns the first element that matches that selector. .PP This method is subject to the implicit timeout. .PP .Vb 2 \& use Firefox::Marionette(); \& use v5.10; \& \& my $firefox = Firefox::Marionette\->new()\->go(\*(Aqhttps://metacpan.org/\*(Aq); \& \& my $div = $firefox\->find_class(\*(Aqpage\-content\*(Aq); \& $div\->find_selector(\*(Aqinput.home\-metacpan_search\-input\*(Aq)\->type(\*(AqTest::More\*(Aq); \& \& # OR in list context \& \& my $div = $firefox\->find_class(\*(Aqpage\-content\*(Aq); \& foreach my $element ($div\->find_selector(\*(Aqinput.home\-metacpan_search\-input\*(Aq)) { \& $element\->type(\*(AqTest::More\*(Aq); \& } .Ve .PP If no elements are found, a not found exception will be thrown. For the same functionality that returns undef if no elements are found, see the has_selector method. .SS "find_tag" .IX Subsection "find_tag" accepts a tag name as the first parameter and returns the first element with this tag name. .PP This method is subject to the implicit timeout. .PP .Vb 2 \& use Firefox::Marionette(); \& use v5.10; \& \& my $firefox = Firefox::Marionette\->new()\->go(\*(Aqhttps://metacpan.org/\*(Aq); \& \& my $div = $firefox\->find_class(\*(Aqpage\-content\*(Aq); \& my $input = $div\->find_tag(\*(Aqinput\*(Aq); \& \& # OR in list context \& \& my $div = $firefox\->find_class(\*(Aqpage\-content\*(Aq); \& foreach my $element ($div\->find_tag(\*(Aqinput\*(Aq)) { \& # do something \& } .Ve .PP If no elements are found, a not found exception will be thrown. For the same functionality that returns undef if no elements are found, see the has_tag method. .SS "find_link" .IX Subsection "find_link" accepts a text string as the first parameter and returns the first link element that has a matching link text. .PP This method is subject to the implicit timeout. .PP .Vb 2 \& use Firefox::Marionette(); \& use v5.10; \& \& my $firefox = Firefox::Marionette\->new()\->go(\*(Aqhttps://metacpan.org/\*(Aq); \& \& my $div = $firefox\->find_class(\*(Aqfooter\-links\*(Aq); \& $div\->find_link(\*(AqAPI\*(Aq)\->click(); \& \& # OR in list context \& \& my $div = $firefox\->find_class(\*(Aqfooter\-links\*(Aq); \& foreach my $element ($div\->find_link(\*(AqAPI\*(Aq)) { \& $element\->click(); \& } .Ve .PP If no elements are found, a not found exception will be thrown. For the same functionality that returns undef if no elements are found, see the has_link method. .SS "find_partial" .IX Subsection "find_partial" accepts a text string as the first parameter and returns the first link element that has a partially matching link text. .PP This method is subject to the implicit timeout. .PP .Vb 2 \& use Firefox::Marionette(); \& use v5.10; \& \& my $firefox = Firefox::Marionette\->new()\->go(\*(Aqhttps://metacpan.org/\*(Aq); \& \& my $div = $firefox\->find_class(\*(Aqfooter\-links\*(Aq); \& $div\->find_partial(\*(AqAP\*(Aq)\->click(); \& \& # OR in list context \& \& my $div = $firefox\->find_class(\*(Aqfooter\-links\*(Aq); \& foreach my $element ($div\->find_partial(\*(AqAP\*(Aq)) { \& $element\->click(); \& } .Ve .PP If no elements are found, a not found exception will be thrown. For the same functionality that returns undef if no elements are found, see the has_partial method. .SS "has" .IX Subsection "has" accepts an xpath expression as the first parameter and returns the first element that matches this expression. .PP This method is subject to the implicit timeout, which, by default is 0 seconds. .PP .Vb 1 \& use Firefox::Marionette(); \& \& my $firefox = Firefox::Marionette\->new()\->go(\*(Aqhttps://metacpan.org/\*(Aq); \& \& my $div = $firefox\->find_class(\*(Aqpage\-content\*(Aq); \& if (my $element = $div\->has(\*(Aq//input[@id="metacpan_search\-input"]\*(Aq)) { \& $element\->type(\*(AqTest::More\*(Aq); \& } .Ve .PP If no elements are found, this method will return undef. For the same functionality that throws a not found exception, see the find method. .SS "has_id" .IX Subsection "has_id" accepts an id as the first parameter and returns the first element with a matching 'id' property. .PP This method is subject to the implicit timeout, which, by default is 0 seconds. .PP .Vb 1 \& use Firefox::Marionette(); \& \& my $firefox = Firefox::Marionette\->new()\->go(\*(Aqhttps://metacpan.org/\*(Aq); \& \& my $div = $firefox\->find_class(\*(Aqpage\-content\*(Aq); \& if (my $element = $div\->has_id(\*(Aqmetacpan_search\-input\*(Aq)) { \& $element\->type(\*(AqTest::More\*(Aq); \& } .Ve .PP If no elements are found, this method will return undef. For the same functionality that throws a not found exception, see the find_id method. .SS "has_name" .IX Subsection "has_name" This method returns the first element with a matching 'name' property. .PP This method is subject to the implicit timeout, which, by default is 0 seconds. .PP .Vb 1 \& use Firefox::Marionette(); \& \& my $firefox = Firefox::Marionette\->new()\->go(\*(Aqhttps://metacpan.org/\*(Aq); \& \& my $div = $firefox\->find_class(\*(Aqpage\-content\*(Aq); \& if (my $element = $div\->has_name(\*(Aqq\*(Aq)) { \& $element\->type(\*(AqTest::More\*(Aq); \& } .Ve .PP If no elements are found, this method will return undef. For the same functionality that throws a not found exception, see the find_name method. .SS "has_class" .IX Subsection "has_class" accepts a class name as the first parameter and returns the first element with a matching 'class' property. .PP This method is subject to the implicit timeout, which, by default is 0 seconds. .PP .Vb 1 \& use Firefox::Marionette(); \& \& my $firefox = Firefox::Marionette\->new()\->go(\*(Aqhttps://metacpan.org/\*(Aq); \& \& my $div = $firefox\->find_class(\*(Aqpage\-content\*(Aq); \& if (my $element = $div\->has_class(\*(Aqform\-control home\-metacpan_search\-input\*(Aq)) { \& $element\->type(\*(AqTest::More\*(Aq); \& } .Ve .PP If no elements are found, this method will return undef. For the same functionality that throws a not found exception, see the find_class method. .SS "has_selector" .IX Subsection "has_selector" accepts a \s-1CSS\s0 Selector as the first parameter and returns the first element that matches that selector. .PP This method is subject to the implicit timeout, which, by default is 0 seconds. .PP .Vb 1 \& use Firefox::Marionette(); \& \& my $firefox = Firefox::Marionette\->new()\->go(\*(Aqhttps://metacpan.org/\*(Aq); \& \& my $div = $firefox\->find_class(\*(Aqpage\-content\*(Aq); \& if (my $element = $div\->has_selector(\*(Aqinput.home\-metacpan_search\-input\*(Aq)) { \& $element\->type(\*(AqTest::More\*(Aq); \& } .Ve .PP If no elements are found, this method will return undef. For the same functionality that throws a not found exception, see the find_selector method. .SS "has_tag" .IX Subsection "has_tag" accepts a tag name as the first parameter and returns the first element with this tag name. .PP This method is subject to the implicit timeout, which, by default is 0 seconds. .PP .Vb 1 \& use Firefox::Marionette(); \& \& my $firefox = Firefox::Marionette\->new()\->go(\*(Aqhttps://metacpan.org/\*(Aq); \& \& my $div = $firefox\->find_class(\*(Aqpage\-content\*(Aq); \& if (my $element = $div\->has_tag(\*(Aqinput\*(Aq); \& # do something \& } .Ve .PP If no elements are found, this method will return undef. For the same functionality that throws a not found exception, see the find_tag method. .SS "has_link" .IX Subsection "has_link" accepts a text string as the first parameter and returns the first link element that has a matching link text. .PP This method is subject to the implicit timeout, which, by default is 0 seconds. .PP .Vb 1 \& use Firefox::Marionette(); \& \& my $firefox = Firefox::Marionette\->new()\->go(\*(Aqhttps://metacpan.org/\*(Aq); \& \& my $div = $firefox\->find_class(\*(Aqfooter\-links\*(Aq); \& if (my $element = $div\->has_link(\*(AqAPI\*(Aq)\->click(); \& $element\->click(); \& } .Ve .PP If no elements are found, this method will return undef. For the same functionality that throws a not found exception, see the find_link method. .SS "has_partial" .IX Subsection "has_partial" accepts a text string as the first parameter and returns the first link element that has a partially matching link text. .PP This method is subject to the implicit timeout, which, by default is 0 seconds. .PP .Vb 1 \& use Firefox::Marionette(); \& \& my $firefox = Firefox::Marionette\->new()\->go(\*(Aqhttps://metacpan.org/\*(Aq); \& \& my $div = $firefox\->find_class(\*(Aqfooter\-links\*(Aq); \& if (my $element = $div\->has_partial(\*(AqAP\*(Aq)\->click(); \& $element\->click(); \& } .Ve .PP If no elements are found, this method will return undef. For the same functionality that throws a not found exception, see the find_partial method. .SS "\s-1IDENTIFIER\s0" .IX Subsection "IDENTIFIER" returns the web element identifier .SS "is_enabled" .IX Subsection "is_enabled" returns true or false if the element is enabled. .SS "is_selected" .IX Subsection "is_selected" returns true or false if the element is selected. .SS "is_displayed" .IX Subsection "is_displayed" returns true or false if the element is displayed. .SS "new" .IX Subsection "new" returns a new element. .SS "property" .IX Subsection "property" accepts a scalar name a parameter. It returns the current value of the property with the supplied name. Compare with the initial value returned by attribute method. .SS "rect" .IX Subsection "rect" returns the current position and size of the element .SS "scroll" .IX Subsection "scroll" accepts an optional parameter which is the same as for the scrollInfoView method. .PP .Vb 1 \& use Firefox::Marionette(); \& \& my $firefox = Firefox::Marionette\->new(visible => 1)\->go(\*(Aqhttps://developer.mozilla.org/en\-US/docs/Web/API/Element/scrollIntoView\*(Aq); \& $firefox\->find_id(\*(Aqcontent\*(Aq)\->find_link(\*(AqExamples\*(Aq)\->scroll({ behavior => \*(Aqsmooth\*(Aq, block => \*(Aqcenter\*(Aq }); .Ve .SS "send_keys" .IX Subsection "send_keys" *** \s-1DEPRECATED\s0 \- see type. *** .SS "selfie" .IX Subsection "selfie" returns a File::Temp object containing a lossless \s-1PNG\s0 image screenshot of the element. .PP accepts the following optional parameters as a hash; .IP "\(bu" 4 hash \- return a \s-1SHA256\s0 hex encoded digest of the \s-1PNG\s0 image rather than the image itself .IP "\(bu" 4 full \- take a screenshot of the whole document unless the first element parameter has been supplied. .IP "\(bu" 4 scroll \- scroll to the element supplied .IP "\(bu" 4 highlights \- a reference to a list containing elements to draw a highlight around .SS "shadow_root" .IX Subsection "shadow_root" returns the element's ShadowRoot as a shadow root object or throws an exception. .PP .Vb 2 \& use Firefox::Marionette(); \& use Cwd(); \& \& my $firefox = Firefox::Marionette\->new()\->go(\*(Aqfile://\*(Aq . Cwd::cwd() . \*(Aq/t/data/elements.html\*(Aq); \& \& $firefox\->find_class(\*(Aqadd\*(Aq)\->click(); \& my $shadow_root = $firefox\->find_tag(\*(Aqcustom\-square\*(Aq)\->shadow_root(); \& \& foreach my $element (@{$firefox\->script(\*(Aqreturn arguments[0].children\*(Aq, args => [ $shadow_root ])}) { \& warn $element\->tag_name(); \& } .Ve .SS "shadowy" .IX Subsection "shadowy" returns true if the element has a ShadowRoot or false otherwise. .PP .Vb 2 \& use Firefox::Marionette(); \& use Cwd(); \& \& my $firefox = Firefox::Marionette\->new()\->go(\*(Aqfile://\*(Aq . Cwd::cwd() . \*(Aq/t/data/elements.html\*(Aq); \& \& $firefox\->find_class(\*(Aqadd\*(Aq)\->click(); \& if ($firefox\->find_tag(\*(Aqcustom\-square\*(Aq)\->shadowy()) { \& my $shadow_root = $firefox\->find_tag(\*(Aqcustom\-square\*(Aq)\->shadow_root(); \& warn $firefox\->script(\*(Aqreturn arguments[0].innerHTML\*(Aq, args => [ $shadow_root ]); \& ... \& } .Ve .PP This function will probably be used to see if the shadow_root method can be called on this element without raising an exception. .SS "switch_to_frame" .IX Subsection "switch_to_frame" switches to this frame within the current window. .SS "tag_name" .IX Subsection "tag_name" returns the relevant tag name. For example 'a' or 'input'. .SS "text" .IX Subsection "text" returns the text that is contained by that element (if any) .SS "type" .IX Subsection "type" accepts a scalar string as a parameter. It sends the string to this element, such as filling out a text box. This method returns the browser to aid in chaining methods. .SS "uuid" .IX Subsection "uuid" returns the browser generated \s-1UUID\s0 connected with this element. .SH "DIAGNOSTICS" .IX Header "DIAGNOSTICS" None. .SH "CONFIGURATION AND ENVIRONMENT" .IX Header "CONFIGURATION AND ENVIRONMENT" Firefox::Marionette::Element requires no configuration files or environment variables. .SH "DEPENDENCIES" .IX Header "DEPENDENCIES" None. .SH "INCOMPATIBILITIES" .IX Header "INCOMPATIBILITIES" None reported. .SH "BUGS AND LIMITATIONS" .IX Header "BUGS AND LIMITATIONS" To report a bug, or view the current list of bugs, please visit .SH "AUTHOR" .IX Header "AUTHOR" David Dick \f(CW\*(C`\*(C'\fR .SH "LICENSE AND COPYRIGHT" .IX Header "LICENSE AND COPYRIGHT" Copyright (c) 2023, David Dick \f(CW\*(C`\*(C'\fR. All rights reserved. .PP This module is free software; you can redistribute it and/or modify it under the same terms as Perl itself. See \*(L"perlartistic\*(R" in perlartistic. .SH "DISCLAIMER OF WARRANTY" .IX Header "DISCLAIMER OF WARRANTY" \&\s-1BECAUSE THIS SOFTWARE IS LICENSED FREE OF CHARGE, THERE IS NO WARRANTY FOR THE SOFTWARE, TO THE EXTENT PERMITTED BY APPLICABLE LAW. EXCEPT WHEN OTHERWISE STATED IN WRITING THE COPYRIGHT HOLDERS AND/OR OTHER PARTIES PROVIDE THE SOFTWARE \*(L"AS IS\*(R" WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE SOFTWARE IS WITH YOU. SHOULD THE SOFTWARE PROVE DEFECTIVE, YOU ASSUME THE COST OF ALL NECESSARY SERVICING, REPAIR, OR CORRECTION.\s0 .PP \&\s-1IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MAY MODIFY AND/OR REDISTRIBUTE THE SOFTWARE AS PERMITTED BY THE ABOVE LICENCE, BE LIABLE TO YOU FOR DAMAGES, INCLUDING ANY GENERAL, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES ARISING OUT OF THE USE OR INABILITY TO USE THE SOFTWARE\s0 (\s-1INCLUDING BUT NOT LIMITED TO LOSS OF DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY YOU OR THIRD PARTIES OR A FAILURE OF THE SOFTWARE TO OPERATE WITH ANY OTHER SOFTWARE\s0), \s-1EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES.\s0