Skip to content
New issue

Have a question about this project? # for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “#”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? # to your account

[plugin-web-app] Deprecate image steps #2236

Merged
merged 1 commit into from
Nov 24, 2021
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
@@ -1,44 +1,58 @@
Composite: When I hover a mouse over an image with the src '$src'
!-- WARNING: The step "When I hover a mouse over an image with the src '$src'" is deprecated and will be removed in VIVIDUS 0.5.0
When I hover a mouse over an element with the xpath './/img[@src='<src>']'

Composite: When I hover a mouse over an image with the tooltip '$tooltipImage'
!-- WARNING: The step "When I hover a mouse over an image with the tooltip '$tooltipImage'" is deprecated and will be removed in VIVIDUS 0.5.0
When I hover a mouse over an element with the xpath './/img[@alt='<tooltipImage>' or @title='<tooltipImage>']'

Composite: When I click on an image with the src '$src'
!-- WARNING: The step "When I click on an image with the src '$src'" is deprecated and will be removed in VIVIDUS 0.5.0
When I click on an element by the xpath './/img[@src='<src>']'

Composite: When I click on an image with the name '$imageName'
!-- WARNING: The step "When I click on an image with the name '$imageName'" is deprecated and will be removed in VIVIDUS 0.5.0
When I click on an element by the xpath './/img[@*='<imageName>' or text()='<imageName>']'

Composite: Then an image with the src '$src' exists
!-- WARNING: The step "Then an image with the src '$src' exists" is deprecated and will be removed in VIVIDUS 0.5.0
Then number of elements found by `By.xpath(.//img[@src='<src>'])` is equal to `1`

Composite: Then a [$state] image with the src '$src' exists
!-- WARNING: The step "Then a [$state] image with the src '$src' exists" is deprecated and will be removed in VIVIDUS 0.5.0
Then number of elements found by `By.xpath(.//img[@src='<src>'])->filter.state(<state>)` is equal to `1`

Composite: Then an image with the src '$src' does not exist
!-- WARNING: The step "Then an image with the src '$src' does not exist" is deprecated and will be removed in VIVIDUS 0.5.0
Then number of elements found by `By.xpath(.//img[@src='<src>'])` is equal to `0`

Composite: Then an image with the src containing '$srcpart' exists
!-- WARNING: The step "Then an image with the src containing '$srcpart' exists" is deprecated and will be removed in VIVIDUS 0.5.0
Then number of elements found by `By.xpath(.//img[contains(@src,'<srcpart>')])` is equal to `1`

Composite: Then an image with the tooltip '$tooltip' and src containing '$srcpart' exists
Priority: 1
!-- WARNING: The step "Then an image with the tooltip '$tooltip' and src containing '$srcpart' exists" is deprecated and will be removed in VIVIDUS 0.5.0
Then number of elements found by `By.xpath(.//img[contains(@src,'<srcpart>') and (@alt='<tooltip>' or @title='<tooltip>')])` is equal to `1`

Composite: Then an image with the src '$imageSrc' and tooltip '$tooltip' exists
Priority: 1
!-- WARNING: The step "Then an image with the src '$imageSrc' and tooltip '$tooltip' exists" is deprecated and will be removed in VIVIDUS 0.5.0
Then number of elements found by `By.xpath(.//img[@src='<imageSrc>' and (@alt='<tooltip>' or @title='<tooltip>')])` is equal to `1`

Composite: Then a [$state] image with the src '$imageSrc' and tooltip '$tooltip' exists
Priority: 1
!-- WARNING: The step "Then a [$state] image with the src '$imageSrc' and tooltip '$tooltip' exists" is deprecated and will be removed in VIVIDUS 0.5.0
Then number of elements found by `By.xpath(.//img[@src='<imageSrc>' and (@alt='<tooltip>' or @title='<tooltip>')])->filter.state(<state>)` is equal to `1`

Composite: Then a [$state] image with the src containing '$srcpart' exists
!-- WARNING: The step "Then a [$state] image with the src containing '$srcpart' exists" is deprecated and will be removed in VIVIDUS 0.5.0
Then number of elements found by `By.xpath(.//img[contains(@src,'<srcpart>')])->filter.state(<state>)` is equal to `1`

Composite: Then a [$state] image with the tooltip '$tooltipImage' exists
!-- WARNING: The step "Then a [$state] image with the tooltip '$tooltipImage' exists" is deprecated and will be removed in VIVIDUS 0.5.0
Then number of elements found by `By.xpath(.//img[@alt='<tooltipImage>' or @title='<tooltipImage>'])->filter.state(<state>)` is equal to `1`

Composite: Then an image with the tooltip '$tooltipImage' exists
!-- WARNING: The step "Then an image with the tooltip '$tooltipImage' exists" is deprecated and will be removed in VIVIDUS 0.5.0
Then number of elements found by `By.xpath(.//img[@alt='<tooltipImage>' or @title='<tooltipImage>'])` is equal to `1`