Skip to content
Open
Show file tree
Hide file tree
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
Expand Up @@ -5,7 +5,7 @@
import Foundation

class PrintTests: BaseTestCase {
// https://mozilla.testrail.io/index.php?/cases/view/3082504
Copy link
Copy Markdown
Collaborator Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

This link points to the case in QA-4150, not from Full Functional Test Plan. The revised URL points to the test from Full Functional.

// https://mozilla.testrail.io/index.php?/cases/view/3167647
func testValidatePrintOption() {
openUrlAndValidatePrintOptions()
navigator.toggleOn(userState.isPrivate, withAction: Action.ToggleExperimentPrivateMode)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ class ReadingListTests: FeatureFlaggedTestBase {
browserScreen = BrowserScreen(app: app)
}

// https://mozilla.testrail.io/index.php?/cases/view/2287278f
// https://mozilla.testrail.io/index.php?/cases/view/2306994
Copy link
Copy Markdown
Collaborator Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Fix typo. I confirmed that the link points to testLoadReaderContent() test

// Smoketest
func testLoadReaderContent() {
addLaunchArgument(jsonFileName: "defaultEnabledOff", featureName: "apple-summarizer-feature")
Expand Down Expand Up @@ -182,28 +182,6 @@ class ReadingListTests: FeatureFlaggedTestBase {
checkReadingListNumberOfItems(items: 0)
}

// https://mozilla.testrail.io/index.php?/cases/view/2306999
func testAddToReadingListFromBrowserTabMenu() throws {
throw XCTSkip("Skipping. The option add to reading list is not available on the new menu")
/*
app.launch()
navigator.nowAt(NewTabScreen)
// First time Reading list is empty
navigator.goto(LibraryPanel_ReadingList)
checkReadingListNumberOfItems(items: 0)
app.buttons["Done"].waitAndTap()
// Add item to Reading List from Page Options Menu
updateScreenGraph()
navigator.openURL(path(forTestPage: "test-mozilla-org.html"))
waitUntilPageLoad()
navigator.performAction(Action.AddToReadingListBrowserTabMenu)
// Now there should be an item on the list
navigator.nowAt(BrowserTab)
navigator.goto(LibraryPanel_ReadingList)
checkReadingListNumberOfItems(items: 1)
*/
}

// https://mozilla.testrail.io/index.php?/cases/view/2307000
func testOpenSavedForReadingLongPressInNewTab() {
addLaunchArgument(jsonFileName: "defaultEnabledOff", featureName: "apple-summarizer-feature")
Expand Down
Loading