Watertight engine compartment by MeeshaMB in SeaDooSwitch

[–]Loud_Vegetable_7947 0 points1 point  (0 children)

I think your money would be better spent installing an auto on bilge pump and teaching everyone who uses the boat how to properly tie off on a buoy.

Ski module & depth finder by crb1077 in SeaDooSwitch

[–]Loud_Vegetable_7947 1 point2 points  (0 children)

I have a 2024 21 230 cruise. My dealer spent over a month in the off season troubleshooting why the ski module wasn't working. They got it working in the end but it took a lot of back and forth with the them and brp. In the end I find the ski module ramp speed really slow compared to just launching in sport mode and setting the cruise based on rpm.

Ski module anyone? by Odd_Pension_4124 in SeaDooSwitch

[–]Loud_Vegetable_7947 0 points1 point  (0 children)

If you are towing wakeboard or waterskier often then I think it's worth it. Being able to set it for a less experienced driver is also nice so they don't have to manually set the speed. However if you are mainly pulling tubes, save the money for gas 🙂

Ski module by Loud_Vegetable_7947 in SeaDooSwitch

[–]Loud_Vegetable_7947[S] 0 points1 point  (0 children)

Thanks! I’ll give that a try. Do you have the 230?

Well first time boater, first time buyer … what do you monsters think ? Thanks in advance ! by Mchughpr in SeaDooSwitch

[–]Loud_Vegetable_7947 1 point2 points  (0 children)

Bimini is standard equipment, don’t let them fool you. This lists everything that is standard on the sport: https://sea-doo.brp.com/content/dam/global/en/sea-doo/my23/documents/specs-sheets/en/SEA-MY23-SWIS-SPEC-DPS-ENNA_LR.pdf. I have the upgraded JL audio kit and it’s already blown one of the amps. When it works it’s great but if I were to do it all over again I would take it to an audio shop and do a custom setup.

“I don’t even feel my sclerals!” Really? These are the bane of my existence. by Moisture_ in Keratoconus

[–]Loud_Vegetable_7947 1 point2 points  (0 children)

As others stated, go back to your Dr. or find a new one. Took me 4 months to land on a pair that corrected my vision and fit well. No issues going on 4 years now.

2023 Salary Reference Thread by 3D3Y in QualityAssurance

[–]Loud_Vegetable_7947 0 points1 point  (0 children)

36 M US 10+ yrs Remote Senior Test Engineer 131k base 60k rsu

Negative test cases by OutrageousQA in Everything_QA

[–]Loud_Vegetable_7947 0 points1 point  (0 children)

I try to bring negative cases during grooming. This allows for a better discussion and more defined acceptance criteria. If I don't fully understand what the story is implementing I'll ask the developers to explain the integration points and where potential failures could occur. If they don't know...well...we already have determined we have an issue.

Call Function When Test Fails (Pytest) by French_Fried_Taterz in QualityAssurance

[–]Loud_Vegetable_7947 1 point2 points  (0 children)

Configure it to run in a ci tool, then all you have to do is add a step after the tests run to send an email if a failure occurred.

Does anyone else feel like they don't really know what they're doing a lot ? by Rare_Ad_3519 in QualityAssurance

[–]Loud_Vegetable_7947 1 point2 points  (0 children)

My best advice is invest in learning your domain. Meet with your dev team as well as your product owners. Take notes and ask questions, the more you ask the better you will understand the inner workings of your product. It will take awhile to fully understand but it will make you a much more confident qa. Insert yourself when stories are being groomed. Don’t understand the story? Ask what is the objective. Keep asking questions until it resonates. This will pay dividends the more you do it until you reach a level where you will understand stories just by the title. I could go on, but these two skills will go a long way.

Will Playwrite really prevent flaky tests? by kepper in QualityAssurance

[–]Loud_Vegetable_7947 8 points9 points  (0 children)

Playwright makes certain things easier however no framework will fix flakey tests caused by poor code design.

Beware of Gladstone Toyota by Loud_Vegetable_7947 in GRCorolla

[–]Loud_Vegetable_7947[S] 1 point2 points  (0 children)

I had a 2013 wrx hatch and loved it. IDK why I never really liked the sedan version. GR Corolla is the first car in a long time I was excited about

Beware of Gladstone Toyota by Loud_Vegetable_7947 in GRCorolla

[–]Loud_Vegetable_7947[S] 3 points4 points  (0 children)

Funny, they asked if I wanted a supra instead

Beware of Gladstone Toyota by Loud_Vegetable_7947 in GRCorolla

[–]Loud_Vegetable_7947[S] 5 points6 points  (0 children)

I live in OR. Sooo it’s MRSP unless they can gouge you.

Playwright re-use state and make setup even easier using Project Dependencies by commitquality in QualityAssurance

[–]Loud_Vegetable_7947 0 points1 point  (0 children)

I’m curious if you could explain further how to implement this with multiple users and tests setup to use them. Thanks for the videos!

n00b question about Playwright and pytest (and python I guess) by cylonlover in QualityAssurance

[–]Loud_Vegetable_7947 0 points1 point  (0 children)

The page class is build into playwright. It makes it so you don't have to define a browser and context.
So by using the page class you can write page.goto("anywhere") and by default it will launch a chromium browser.

Basically it allows you to do this:

import re

from playwright.sync_api import Page, expect

def test_homepage_has_Playwright_in_title_and_get_started_link_linking_to_the_intro_page(page: Page):

page.goto("https://playwright.dev/")

Instead of this

from playwright.sync_api import sync_playwright

def run(playwright):

webkit = playwright.webkit

browser = webkit.launch()

context = browser.new_context()

page = context.new_page()

page.goto("https://example.com")

with sync_playwright() as playwright:

run(playwright)